diff options
Diffstat (limited to 'target/Makefile.in')
-rw-r--r-- | target/Makefile.in | 8 |
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 |