From 4b72854ddeb69855e5f91b640bb75cd73f77528b Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 8 Dec 2008 08:15:58 +0000 Subject: target/: get rid of unneeded $(strip ..) --- target/x86/grub/grub.mk | 2 +- target/x86/grub2/grub2.mk | 2 +- target/x86/syslinux/syslinux.mk | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'target/x86') diff --git a/target/x86/grub/grub.mk b/target/x86/grub/grub.mk index 402333e9b..b7484cb43 100644 --- a/target/x86/grub/grub.mk +++ b/target/x86/grub/grub.mk @@ -132,6 +132,6 @@ endif # Toplevel Makefile options # ############################################################# -ifeq ($(strip $(BR2_TARGET_GRUB)),y) +ifeq ($(BR2_TARGET_GRUB),y) TARGETS+=grub endif diff --git a/target/x86/grub2/grub2.mk b/target/x86/grub2/grub2.mk index fcbbc2cc6..95db8ec42 100644 --- a/target/x86/grub2/grub2.mk +++ b/target/x86/grub2/grub2.mk @@ -129,6 +129,6 @@ endif # Toplevel Makefile options # ############################################################# -ifeq ($(strip $(BR2_TARGET_GRUB2)),y) +ifeq ($(BR2_TARGET_GRUB2),y) TARGETS+=grub2 endif diff --git a/target/x86/syslinux/syslinux.mk b/target/x86/syslinux/syslinux.mk index 1d8ac18db..b7603caee 100644 --- a/target/x86/syslinux/syslinux.mk +++ b/target/x86/syslinux/syslinux.mk @@ -62,9 +62,9 @@ endif # Toplevel Makefile options # ############################################################# -ifeq ($(strip $(BR2_TARGET_SYSLINUX)),y) +ifeq ($(BR2_TARGET_SYSLINUX),y) TARGETS+=syslinux endif -ifeq ($(strip $(BR2_TARGET_PXELINUX)),y) +ifeq ($(BR2_TARGET_PXELINUX),y) TARGETS+=pxelinux endif -- cgit v1.2.3