From: Bruce S. <bl...@us...> - 2004-12-08 18:25:06
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14789/scripts Modified Files: traceroute Log Message: Added bindfix patch in traceroute. Index: traceroute =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/traceroute,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- traceroute 11 Jan 2004 14:43:05 -0000 1.9 +++ traceroute 8 Dec 2004 18:24:56 -0000 1.10 @@ -25,6 +25,10 @@ case $1 in build ) + if [ ! -f .done_dl_patches ]; then + bzcat $DL_DIR/src/traceroute_bindfix.patch.bz2 | patch -p1 || exit 1 + touch .done_dl_patches + fi ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 strip_debug |