aboutsummaryrefslogtreecommitdiff
path: root/scripts/trylink
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-26 20:09:08 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-26 20:09:08 +0000
commitb522d6931d16e9e8ef41fe8d9f23035ccf53270c (patch)
treeaaae635f87f12fe0bbe3d699c03e5f3874f8ee13 /scripts/trylink
parent279ca69727066da306d75c3a6e27d22301ab5305 (diff)
downloadbusybox-w32-b522d6931d16e9e8ef41fe8d9f23035ccf53270c.tar.gz
busybox-w32-b522d6931d16e9e8ef41fe8d9f23035ccf53270c.tar.bz2
busybox-w32-b522d6931d16e9e8ef41fe8d9f23035ccf53270c.zip
trylink: make messages less confusing
Diffstat (limited to '')
-rwxr-xr-xscripts/trylink4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/trylink b/scripts/trylink
index adc045ad8..7a4a56dfd 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -141,12 +141,12 @@ while test "$LDLIBS"; do
141 -Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \ 141 -Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \
142 $l_list 142 $l_list
143 if test $? = 0; then 143 if test $? = 0; then
144 echo " Library $one is not needed" 144 echo " Library $one is not needed, excluding it"
145 LDLIBS="$without_one" 145 LDLIBS="$without_one"
146 all_needed=false 146 all_needed=false
147 last_needed=false 147 last_needed=false
148 else 148 else
149 echo " Library $one is needed" 149 echo " Library $one is needed, can't exclude it (yet)"
150 last_needed=true 150 last_needed=true
151 fi 151 fi
152 done 152 done