diff options
Diffstat (limited to 'nx-X11/programs/xterm/plink.sh')
-rw-r--r-- | nx-X11/programs/xterm/plink.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/nx-X11/programs/xterm/plink.sh b/nx-X11/programs/xterm/plink.sh deleted file mode 100644 index 244f1b517..000000000 --- a/nx-X11/programs/xterm/plink.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/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 |