mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Work off /tmp. When done, move the distribution tarball to the previous
working dir.
This commit is contained in:
parent
676ec165fb
commit
529bb05bc6
@ -26,14 +26,20 @@
|
|||||||
# file, but you are not obligated to do so. If you do not wish to do
|
# file, but you are not obligated to do so. If you do not wish to do
|
||||||
# so, delete this exception statement from your version.
|
# so, delete this exception statement from your version.
|
||||||
|
|
||||||
|
|
||||||
CVSROOT=:pserver:cvs@sunsite.dk:/pack/anoncvs
|
CVSROOT=:pserver:cvs@sunsite.dk:/pack/anoncvs
|
||||||
DIR=$HOME/work/tmp
|
|
||||||
SUBDIR=wget.cvs.$$
|
SUBDIR=wget.cvs.$$
|
||||||
DEBUG=no
|
DEBUG=no
|
||||||
|
|
||||||
EXPORT_TAG='-D now'
|
EXPORT_TAG='-D now'
|
||||||
VERSION=
|
VERSION=
|
||||||
|
|
||||||
|
if test x"$TMPDIR" = x
|
||||||
|
then
|
||||||
|
TMPDIR=/tmp
|
||||||
|
fi
|
||||||
|
DEST_DIR=`pwd`
|
||||||
|
|
||||||
while test x"$*" != x
|
while test x"$*" != x
|
||||||
do
|
do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
@ -68,12 +74,12 @@ if test "`(echo foo; echo -n bar) | tr '[\012]' x`" != fooxbar; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# File for output/errors redirection.
|
# 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 "Building wget dist in $TMPDIR/$SUBDIR."
|
||||||
echo "Output from commands is in $DIR/dist-output."
|
echo "Output from commands is in $O."
|
||||||
|
|
||||||
echo "-----------" >$O
|
echo "-----------" >$O
|
||||||
|
|
||||||
@ -130,7 +136,7 @@ echo "done."
|
|||||||
# Create the distribution file.
|
# Create the distribution file.
|
||||||
echo $e_n "Creating distribution tarball... $e_c"
|
echo $e_n "Creating distribution tarball... $e_c"
|
||||||
make dist 1>>$O 2>&1
|
make dist 1>>$O 2>&1
|
||||||
mv wget-*.tar.gz ../
|
mv wget-*.tar.gz $DEST_DIR
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
Loading…
Reference in New Issue
Block a user