From: Fred Drake Date: Tue, 24 Mar 1998 17:48:20 +0000 (+0000) Subject: Make $MYDIR absolute -- bug reported by AMK. X-Git-Tag: v1.5.1~318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f558e3188e53f10a086f18c5dd5061bf009f0c7f;p=thirdparty%2FPython%2Fcpython.git Make $MYDIR absolute -- bug reported by AMK. --- diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 6b6bb962c614..e3a0b7f4cf88 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -1,6 +1,10 @@ #! /depot/gnu/plat/bin/bash MYDIR=`dirname $0` +WORKDIR=`pwd` +cd $MYDIR +MYDIR=`pwd` +cd $WORKDIR # DEFAULT_FORMAT must be upper case... DEFAULT_FORMAT=PDF