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/Makefile.in | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'target/Makefile.in') diff --git a/target/Makefile.in b/target/Makefile.in index 187503260..d5d761346 100644 --- a/target/Makefile.in +++ b/target/Makefile.in @@ -11,7 +11,7 @@ include target/device/Makefile.in include target/x86/Makefile.in include target/powerpc/Makefile.in -ifeq ($(strip $(BR2_TARGET_UBOOT)),y) +ifeq ($(BR2_TARGET_UBOOT),y) include target/u-boot/Makefile.in endif @@ -22,13 +22,11 @@ include target/*/*.mk # We already did add the kernel target to TARGETS and now just pull in the rules # to actually build this target. -ifeq ($(strip $(subst ",,$(BR2_KERNEL_LINUX))),y) -#")) +ifeq ($(BR2_KERNEL_LINUX),y) include target/linux/Makefile.in endif -ifeq ($(strip $(subst ",,$(BR2_KERNEL_LINUX_ADVANCED))),y) -#")) +ifeq ($(BR2_KERNEL_LINUX_ADVANCED),y) include target/linux/Makefile.in.advanced endif -- cgit v1.2.3