From f65dca19aa00dfd014407f36f0ee7b7523c33fd5 Mon Sep 17 00:00:00 2001 From: "Tom G. Christensen" Date: Wed, 21 Jul 2004 20:20:07 +0000 Subject: [PATCH] Forgot one mkdir->$MKDIR during the last cleanup. Made the $SED substitution a bit more readable. --- newpkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newpkg b/newpkg index f0aef41..672b365 100644 --- a/newpkg +++ b/newpkg @@ -19,13 +19,13 @@ echo "Creating sandbox for $arg1" $MKDIR "$arg1" for i in $REQ_DIRS do - mkdir $arg1/$i + $MKDIR $arg1/$i done $CP scripts/build.sh.generic $arg1/build.sh chmod 755 $arg1/build.sh if [ "$($UNAME -s)" == "IRIX" ]; then - $SED -e 's/bin\/bash/usr\/local\/bin\/bash/g' $arg1/build.sh > $arg1/build.sh.tmp + $SED -e 's;bin/bash;usr/local/bin/bash;g' $arg1/build.sh > $arg1/build.sh.tmp $MV $arg1/build.sh.tmp $arg1/build.sh $CP scripts/pkgdef.template.irix $arg1/meta/pkgdef $CP scripts/relnotes.template.irix $arg1/meta/relnotes