From: miker Date: Sun, 4 Nov 2007 12:36:30 +0000 (+0000) Subject: run all of autogen in a subshell so the the CWD is reset X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=321bd758d35183467f708c655daaad9b43c1eb66;p=Evergreen.git run all of autogen in a subshell so the the CWD is reset git-svn-id: svn://svn.open-ils.org/ILS/trunk@7984 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/extras/autogen.sh b/Open-ILS/src/extras/autogen.sh index 5e3e7433bf..8804b2b693 100755 --- a/Open-ILS/src/extras/autogen.sh +++ b/Open-ILS/src/extras/autogen.sh @@ -1,6 +1,8 @@ #!/bin/bash # vim:noet:ts=4 +( + BASEDIR=${0%/*} if test "$BASEDIR" = "$0" ; then BASEDIR="$(which $0)" @@ -30,3 +32,5 @@ perl org_tree_html_options.pl "$CONFIG" "$SLIMPACDIR/lib_list.inc"; echo "Done"; +) +