diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-01 22:45:55 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-01 22:45:55 +0000 |
commit | 05e668d206b5843c9bd6be3699d59a87f186a1e1 (patch) | |
tree | 8a73fdb99d01bbe73962ebe271277b142d4d662d /scripts | |
parent | 8bf403c6f9f9e58568981f588a1a0b29416b4aae (diff) | |
download | master-187ad058-05e668d206b5843c9bd6be3699d59a87f186a1e1.tar.gz master-187ad058-05e668d206b5843c9bd6be3699d59a87f186a1e1.tar.bz2 master-187ad058-05e668d206b5843c9bd6be3699d59a87f186a1e1.zip |
[scripts] ext-toolchain.sh: don't pass CFLAGS when wrapping ld
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31549 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ext-toolchain.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ext-toolchain.sh b/scripts/ext-toolchain.sh index a34ef06773..d1e163fd68 100755 --- a/scripts/ext-toolchain.sh +++ b/scripts/ext-toolchain.sh @@ -221,7 +221,7 @@ wrap_bin_ld() { local bin="$2" echo '#!/bin/sh' > "$out" - echo -n 'exec "'"$bin"'" '"$CFLAGS"' ${STAGING_DIR:+' >> "$out" + echo -n 'exec "'"$bin"'" ${STAGING_DIR:+' >> "$out" echo -n '-L "$STAGING_DIR/usr/lib" ' >> "$out" echo '-rpath-link "$STAGING_DIR/usr/lib"} "$@"' >> "$out" |