diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-28 23:40:53 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-05-03 00:00:06 +0200 |
commit | bf759874243e522acc39ea7fb4060a3075e2a712 (patch) | |
tree | a4cf7abf40ffd8b806aed62ec8f4e652d7502f83 /target/linux/Makefile.in | |
parent | 4c5bf461cd8cec58ff56b72d09a7fc45b0599636 (diff) | |
download | buildroot-novena-bf759874243e522acc39ea7fb4060a3075e2a712.tar.gz buildroot-novena-bf759874243e522acc39ea7fb4060a3075e2a712.zip |
Get rid of KERNEL_CROSS
In both internal and external toolchain cases, KERNEL_CROSS was
defined to *exactly* the same value as TARGET_CROSS. It isn't modified
anywhere, and is just used by kernel compilation and pcmcia
compilation.
Therefore, get rid of KERNEL_CROSS and use TARGET_CROSS instead.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/linux/Makefile.in')
-rw-r--r-- | target/linux/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/Makefile.in b/target/linux/Makefile.in index 41e482131..ea7440944 100644 --- a/target/linux/Makefile.in +++ b/target/linux/Makefile.in @@ -85,7 +85,7 @@ endif LINUX26_MAKE_FLAGS = HOSTCC="$(HOSTCC)" HOSTCFLAGS="$(HOSTCFLAGS)" \ ARCH=$(KERNEL_ARCH) \ INSTALL_MOD_PATH=$(TARGET_DIR) \ - CROSS_COMPILE=$(KERNEL_CROSS) \ + CROSS_COMPILE=$(TARGET_CROSS) \ LDFLAGS="$(TARGET_LDFLAGS)" \ LZMA="$(LZMA)" |