diff options
author | Bruce Momjian | 2001-09-22 04:28:12 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-09-22 04:28:12 +0000 |
commit | 6bbdd7a9e29ac745267425a569d2f376bf3484df (patch) | |
tree | 27c02be00f10514419e76dc9f2b92bdd36f38315 /src/bin/scripts/createlang.sh | |
parent | f5ab01ada74011681d338d44126838311efc23ac (diff) |
sbasename $0 is now basename "$0"
Diffstat (limited to 'src/bin/scripts/createlang.sh')
-rw-r--r-- | src/bin/scripts/createlang.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/scripts/createlang.sh b/src/bin/scripts/createlang.sh index fe9cf5fb0ea..12c54943b75 100644 --- a/src/bin/scripts/createlang.sh +++ b/src/bin/scripts/createlang.sh @@ -7,11 +7,11 @@ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.29 2001/08/13 21:34:54 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.30 2001/09/22 04:28:12 momjian Exp $ # #------------------------------------------------------------------------- -CMDNAME=`basename $0` +CMDNAME=`basename "$0"` PATHNAME=`echo $0 | sed "s,$CMDNAME\$,,"` PSQLOPT= |