File: plink.sh

package info (click to toggle)
xterm 235-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,780 kB
  • ctags: 4,528
  • sloc: ansic: 48,756; sh: 3,793; perl: 1,036; makefile: 406
file content (27 lines) | stat: -rwxr-xr-x 503 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
# $XTermId: plink.sh,v 1.4 2005/05/03 00:38:24 tom Exp $
# $XFree86: xc/programs/xterm/plink.sh,v 3.2 2005/05/03 00:38:24 dickey Exp $
#
# Reduce the number of dynamic libraries used to link an executable.
LINKIT=
while test $# != 0
do
	OPT="$1"
	shift
	case $OPT in
	-l*)
		echo "testing if $OPT is needed"
		if ( eval $LINKIT $* >/dev/null 2>/dev/null )
		then
			: echo ...no
		else
			echo ...yes
			LINKIT="$LINKIT $OPT"
		fi
		;;
	*)
		LINKIT="$LINKIT $OPT"
		;;
	esac
done
eval $LINKIT