diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-09-02 18:06:27 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-15 22:48:28 +0200 |
commit | 87bb43994282b875d334cbaeb10f49fc08c6d0a4 (patch) | |
tree | 66aefaf41364579a9e7d7b2a9b6c92cf057ae93f | |
parent | 7f1f9185e7bf5badca554c362ab8a37f04caff5f (diff) | |
download | buildroot-87bb43994282b875d334cbaeb10f49fc08c6d0a4.tar.gz buildroot-87bb43994282b875d334cbaeb10f49fc08c6d0a4.zip |
package/Makefile.in: fix incorrect comment
The TARGET_{CC,CXX,LD,...} variables no longer contain any --sysroot
option, since we're now using a toolchain wrapper for external
toolchains.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index dd365be4d6..4adc33d0d5 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -147,8 +147,7 @@ endif # Quotes are needed for spaces et al in path components. TARGET_PATH="$(HOST_DIR)/bin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin/:$(PATH)" -# Define TARGET_xx variables for all common binutils/gcc tools by -# including the --sysroot option where necessary. +# Define TARGET_xx variables for all common binutils/gcc TARGET_AR = $(TARGET_CROSS)ar TARGET_AS = $(TARGET_CROSS)as TARGET_CC = $(TARGET_CROSS)gcc |