From: Bernhard Reutner-Fischer Date: Fri, 22 Jun 2007 17:49:14 +0000 (-0000) Subject: - LINUX26_BINLOC is always defined in target/device/mips/Makefile.in, even for non... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f9060242f07fed29559424b1f77c42889f1fbfb;p=buildroot.git - LINUX26_BINLOC is always defined in target/device/mips/Makefile.in, even for non-mips Thanks to Julien Letessier for spotting my omission --- diff --git a/target/device/mips/Makefile.in b/target/device/mips/Makefile.in index af8cf65ca6..75db217331 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