From c2c435c9d8d02dc911443bb49a5b3bc04bac8473 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Thu, 7 Sep 2006 12:46:08 +0000 Subject: [PATCH] fix directory creation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41042 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/scripts/pre-flight.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/distrib/scripts/pre-flight.sh b/distrib/scripts/pre-flight.sh index 41f6988314..5074f8ec8f 100755 --- a/distrib/scripts/pre-flight.sh +++ b/distrib/scripts/pre-flight.sh @@ -5,7 +5,7 @@ if [ "$VERSION" = "" ]; then . scripts/build-environ.cfg fi -echo "$WX_TEMP_DIR" +echo "temp dir is $WX_TEMP_DIR" START_DIR="$PWD" SCRIPTDIR=${START_DIR}/scripts @@ -32,6 +32,7 @@ else fi if [ ! -d $WX_SRC_DIR ]; then + cd $WX_TEMP_DIR cvs -d:pserver:anoncvs:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets login echo "Grabbing wx CVS with tag $BUILD_TAG" cvs -d:pserver:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets checkout -r $BUILD_TAG wxWidgets @@ -47,6 +48,10 @@ fi #re-bake the bakefiles if [ $rebake = "yes" ]; then + if [ ! -d $WX_SRC_DIR/build/bakefiles ]; then + mkdir $WX_SRC_DIR/build/bakefiles + fi + cd $WX_SRC_DIR/build/bakefiles # always rebuild the bakefiles to avoid conflicts with cvs ## better to not use unix2dos on the wxWidgets tree so we don't get the conflicts @@ -72,7 +77,8 @@ export SCRIPTDIR=${SCRIPTDIR} rm -rf $APPDIR/deliver/* rm -rf $START_DIR/$DIST_DIR/* -tar czf $START_DIR/$DIST_DIR/wxWidgets-snapshot-$BUILD_VERSION.tar.gz `basename $APPDIR` + +tar czf $START_DIR/$DIST_DIR/wxWidgets-snapshot-$BUILD_VERSION.tar.gz $WX_TEMP_DIR #export DESTDIR=$STAGING_DIR cp $SCRIPTDIR/create_archives.sh $APPDIR/distrib/scripts -- 2.47.2