From eb33893c475dd6707a4a8b0e21ddadbd6095fd8b Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Thu, 6 Jul 2006 23:31:22 +0000 Subject: [PATCH] Make sure it creates the directory where tarballs are stored if it doesn't exist. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40035 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/scripts/pre-flight.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distrib/scripts/pre-flight.sh b/distrib/scripts/pre-flight.sh index 41c62e608b..08cb45b45b 100755 --- a/distrib/scripts/pre-flight.sh +++ b/distrib/scripts/pre-flight.sh @@ -38,8 +38,8 @@ else fi # this is where we will store the wxAll tarball we create -if [ ! -d $DISTDIR ]; then - mkdir $DISTDIR +if [ ! -d $START_DIR/$DISTDIR ]; then + mkdir -p $START_DIR/$DISTDIR fi #re-bake the bakefiles -- 2.45.2