Make the script a little more location agnostic
authorRichard Levitte <richard@levitte.org>
Tue, 20 Jan 2015 15:18:23 +0000 (16:18 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:25:06 +0000 (09:25 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
util/openssl-format-source

index 1e0185d5fbd95f39b4f766581998a7d4fa6a1d39..162103f5e964d6d2c0cf98d206f89b10a4ea3471 100755 (executable)
@@ -17,6 +17,7 @@
 
 PATH=/usr/local/bin:/bin:/usr/bin:$PATH
 export PATH
+HERE="`dirname $0`"
 
 set -e
 
@@ -32,7 +33,7 @@ COMMENTS=false
 
 # for this exercise, we want to force the openssl style, so we roll
 # our own indent profile, which is at a well known location
-INDENT_PROFILE="`dirname $0`/indent.pro"
+INDENT_PROFILE="$HERE/indent.pro"
 export INDENT_PROFILE
 if [ -f "$INDENT_PROFILE" ]; then
   echo "$0: unable to locate the openssl indent.pro file" >&2
@@ -124,7 +125,7 @@ do
              | perl -np \
                -e 's/(STACK_OF|LHASH_OF)_([^ \t,]+)_( |\/)/$1($2)$3/g;' \
                -e 's/(STACK_OF|LHASH_OF)_([^ \t,]+)_$/$1($2)/g;' \
-             | perl util/su-filter.pl \
+             | perl "$HERE"/su-filter.pl \
              > "$tmp"
          else
            expand "$j" | indent $INDENT_ARGS > "$tmp"