summaryrefslogtreecommitdiff
path: root/target/Makefile.in
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-12-08 08:15:58 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-12-08 08:15:58 +0000
commit4b72854ddeb69855e5f91b640bb75cd73f77528b (patch)
treea42c051cebeae8df2a2d3bbe17d695d471cea4c0 /target/Makefile.in
parent0db545ab184144da033174eca721bb866521489d (diff)
target/: get rid of unneeded $(strip ..)
Diffstat (limited to 'target/Makefile.in')
-rw-r--r--target/Makefile.in8
1 files changed, 3 insertions, 5 deletions
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