]> sjero.net Git - wget/commitdiff
[svn] Work off /tmp. When done, move the distribution tarball to the previous
authorhniksic <devnull@localhost>
Tue, 21 May 2002 03:40:10 +0000 (20:40 -0700)
committerhniksic <devnull@localhost>
Tue, 21 May 2002 03:40:10 +0000 (20:40 -0700)
working dir.

util/dist-wget

index eb1eca9a19a1ea9b74515dd5f2816527bbe67dce..b55d04a80dcf26ac9026d03483d47a29e2e31b54 100755 (executable)
 # 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 ..