From f4092abdf94af6a99aff944d6264bc1284e8bdd4 Mon Sep 17 00:00:00 2001 From: Reinhard Tartler Date: Mon, 10 Oct 2011 17:43:39 +0200 Subject: Imported nx-X11-3.1.0-1.tar.gz Summary: Imported nx-X11-3.1.0-1.tar.gz Keywords: Imported nx-X11-3.1.0-1.tar.gz into Git repository --- nx-X11/programs/xterm/plink.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 nx-X11/programs/xterm/plink.sh (limited to 'nx-X11/programs/xterm/plink.sh') diff --git a/nx-X11/programs/xterm/plink.sh b/nx-X11/programs/xterm/plink.sh new file mode 100644 index 000000000..244f1b517 --- /dev/null +++ b/nx-X11/programs/xterm/plink.sh @@ -0,0 +1,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 -- cgit v1.2.3