diff -ru xterm-200/plink.sh /tmp/xterm-200/plink.sh --- xterm-200/plink.sh 2001-03-13 02:48:43.000000000 -0700 +++ /tmp/xterm-200/plink.sh 2005-04-29 10:35:18.995239583 -0600 @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/sh -x # $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= +C= while test $# != 0 do OPT="$1" @@ -10,17 +10,17 @@ case $OPT in -l*) echo "testing if $OPT is needed" - if ( eval $CMD $* >/dev/null 2>/dev/null ) + if ( eval $C $* >/dev/null 2>/dev/null ) then : echo ...no else echo ...yes - CMD="$CMD $OPT" + C="$C $OPT" fi ;; *) - CMD="$CMD $OPT" + C="$C $OPT" ;; esac done -eval $CMD +eval $C