aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/makedist.sh5
-rwxr-xr-xscripts/makerpm.sh8
2 files changed, 9 insertions, 4 deletions
diff --git a/scripts/makedist.sh b/scripts/makedist.sh
index dca64d21..d342cea3 100755
--- a/scripts/makedist.sh
+++ b/scripts/makedist.sh
@@ -5,6 +5,9 @@ PWD=`pwd`
## assume the base directory.
if test "`basename $PWD`" == "scripts"; then
cd ../
+else
+ MYOLDPWD=`pwd`
+ cd `dirname $0`/../
fi
if test -e Makefile
@@ -17,4 +20,6 @@ make dist
if test "`basename $PWD`" == "scripts"; then
cd contrib/
+else
+ cd $MYOLDPWD
fi
diff --git a/scripts/makerpm.sh b/scripts/makerpm.sh
index 52104c8a..bfa2b47f 100755
--- a/scripts/makerpm.sh
+++ b/scripts/makerpm.sh
@@ -4,9 +4,9 @@ PWD=`pwd`
## If we're not in the scripts directory
## assume the base directory.
-if test "`basename $PWD`" != "scripts" && \
- test -d scripts; then
- cd scripts
+if test "`basename $PWD`" != "scripts"; then
+ MYOLDPWD=`pwd`
+ cd `dirname $0`
fi
./makedist.sh
@@ -25,5 +25,5 @@ then
fi
if test "`basename $PWD`" != "scripts"; then
- cd ..
+ cd $MYOLDPWD
fi