From 529bb05bc6e6aa84cd2da92d2dc7f0cd970cf5fc Mon Sep 17 00:00:00 2001 From: hniksic Date: Mon, 20 May 2002 20:40:10 -0700 Subject: [PATCH] [svn] Work off /tmp. When done, move the distribution tarball to the previous working dir. --- util/dist-wget | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/util/dist-wget b/util/dist-wget index eb1eca9a..b55d04a8 100755 --- a/util/dist-wget +++ b/util/dist-wget @@ -26,14 +26,20 @@ # file, but you are not obligated to do so. If you do not wish to do # so, delete this exception statement from your version. + CVSROOT=:pserver:cvs@sunsite.dk:/pack/anoncvs -DIR=$HOME/work/tmp SUBDIR=wget.cvs.$$ DEBUG=no EXPORT_TAG='-D now' VERSION= +if test x"$TMPDIR" = x +then + TMPDIR=/tmp +fi +DEST_DIR=`pwd` + while test x"$*" != x do case "$1" in @@ -68,12 +74,12 @@ if test "`(echo foo; echo -n bar) | tr '[\012]' x`" != fooxbar; then fi # File for output/errors redirection. -O=$DIR/dist-output +O=$DEST_DIR/dist-output -cd $DIR +cd $TMPDIR -echo "Building wget dist in $DIR." -echo "Output from commands is in $DIR/dist-output." +echo "Building wget dist in $TMPDIR/$SUBDIR." +echo "Output from commands is in $O." echo "-----------" >$O @@ -130,7 +136,7 @@ echo "done." # Create the distribution file. echo $e_n "Creating distribution tarball... $e_c" make dist 1>>$O 2>&1 -mv wget-*.tar.gz ../ +mv wget-*.tar.gz $DEST_DIR echo "done." cd .. -- 2.39.2