diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-26 20:09:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-26 20:09:08 +0000 |
commit | b522d6931d16e9e8ef41fe8d9f23035ccf53270c (patch) | |
tree | aaae635f87f12fe0bbe3d699c03e5f3874f8ee13 /scripts/trylink | |
parent | 279ca69727066da306d75c3a6e27d22301ab5305 (diff) | |
download | busybox-b522d6931d16e9e8ef41fe8d9f23035ccf53270c.tar.gz |
trylink: make messages less confusing
Diffstat (limited to 'scripts/trylink')
-rwxr-xr-x | scripts/trylink | 4 |
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 -Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \ $l_list if test $? = 0; then - echo " Library $one is not needed" + echo " Library $one is not needed, excluding it" LDLIBS="$without_one" all_needed=false last_needed=false else - echo " Library $one is needed" + echo " Library $one is needed, can't exclude it (yet)" last_needed=true fi done |