[Pkg-ace-devel] r365 - /branches/pkg-split/debian/look-for-missing.sh

tgg-guest at users.alioth.debian.org tgg-guest at users.alioth.debian.org
Sun Jul 9 09:36:54 UTC 2006


Author: tgg-guest
Date: Sun Jul  9 09:36:54 2006
New Revision: 365

URL: http://svn.debian.org/wsvn/pkg-ace/?sc=1&rev=365
Log:
Don't make look-for-missing.sh too dependent on file command location.

Modified:
    branches/pkg-split/debian/look-for-missing.sh

Modified: branches/pkg-split/debian/look-for-missing.sh
URL: http://svn.debian.org/wsvn/pkg-ace/branches/pkg-split/debian/look-for-missing.sh?rev=365&op=diff
==============================================================================
--- branches/pkg-split/debian/look-for-missing.sh (original)
+++ branches/pkg-split/debian/look-for-missing.sh Sun Jul  9 09:36:54 2006
@@ -3,13 +3,13 @@
 LIBS_IN_INSTALL=`mktemp` || exit 1
 LIBS_IN_CONTROL=`mktemp` || exit 1
 
-CUT=/usr/bin/cut
-DIFF=/usr/bin/diff
-LS=/bin/ls
-GREP=/bin/grep
-RM=/bin/rm
-SED=/bin/sed
-SORT=/usr/bin/sort
+CUT=cut
+DIFF=diff
+LS=ls
+GREP=grep
+RM=rm
+SED=sed
+SORT=sort
 WD=`dirname $0`
 
 $LS $WD/*.install | $GREP "debian/lib" | $GREP -v -- -dev | $SED -e 's#.*debian/##' -e 's#\.install$##' | $SORT > $LIBS_IN_INSTALL




More information about the Pkg-ace-devel mailing list