27 lines
425 B
Bash
Executable File
27 lines
425 B
Bash
Executable File
#!/bin/sh
|
|
# $XFree86: xc/programs/xterm/plink.sh,v 3.1 2001/03/13 09:48:43 dickey Exp $
|
|
#
|
|
# Reduce the number of dynamic libraries used to link an executable.
|
|
CMD=
|
|
while test $# != 0
|
|
do
|
|
OPT="$1"
|
|
shift
|
|
case $OPT in
|
|
-l*)
|
|
echo "testing if $OPT is needed"
|
|
if ( eval $CMD $* >/dev/null 2>/dev/null )
|
|
then
|
|
: echo ...no
|
|
else
|
|
echo ...yes
|
|
CMD="$CMD $OPT"
|
|
fi
|
|
;;
|
|
*)
|
|
CMD="$CMD $OPT"
|
|
;;
|
|
esac
|
|
done
|
|
eval $CMD
|