diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-22 17:49:14 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-22 17:49:14 +0000 |
commit | 7f9060242f07fed29559424b1f77c42889f1fbfb (patch) | |
tree | b8b09bbd3d27780fa457350e9c29da633732b522 /target/device | |
parent | 1728f54e779e01d9a14f3e03463c1d2c9e8eab9e (diff) | |
download | buildroot-novena-7f9060242f07fed29559424b1f77c42889f1fbfb.tar.gz buildroot-novena-7f9060242f07fed29559424b1f77c42889f1fbfb.zip |
- LINUX26_BINLOC is always defined in target/device/mips/Makefile.in, even for non-mips
Thanks to Julien Letessier for spotting my omission
Diffstat (limited to 'target/device')
-rw-r--r-- | target/device/mips/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/device/mips/Makefile.in b/target/device/mips/Makefile.in index af8cf65ca..75db21733 100644 --- a/target/device/mips/Makefile.in +++ b/target/device/mips/Makefile.in @@ -1,3 +1,4 @@ +ifneq ($(findstring y,$(BR2_mips)$(BR2_mipsel)),) BR2_BOARD_PATH:=target/device/mips ifeq ($(strip $(BR2_PACKAGE_LINUX_KCONFIG)),) @@ -20,3 +21,4 @@ ifndef LINUX26_BINLOC # mips32 has the vmlinux in the toplevel kernel build-tree. LINUX26_BINLOC=$(LINUX26_FORMAT) endif +endif |