mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
quiet 9l
This commit is contained in:
parent
4b089276b8
commit
237c30900c
1 changed files with 10 additions and 1 deletions
11
bin/9l
11
bin/9l
|
@ -252,10 +252,19 @@ if $verbose
|
|||
then
|
||||
echo $ld -L$PLAN9/lib "$@" $libsl $extralibs
|
||||
fi
|
||||
if $ld -L$PLAN9/lib "$@" $libsl $extralibs
|
||||
|
||||
xtmp=/tmp/9l.$$.$USER.out
|
||||
xxout() {
|
||||
egrep -v ': In function `' $xtmp
|
||||
rm -f $xtmp
|
||||
}
|
||||
|
||||
if $ld -L$PLAN9/lib "$@" $libsl $extralibs >$xtmp 2>&1
|
||||
then
|
||||
xxout
|
||||
exit 0
|
||||
else
|
||||
xxout
|
||||
rm -f $target
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue