Skip to content

Commit a746653

Browse files
committed
Fix sed invocation, from Keith Parks
1 parent 74618e2 commit a746653

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/catalog/genbki.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
#
1212
# IDENTIFICATION
13-
# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.15 2000/07/06 21:33:22 petere Exp $
13+
# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.16 2000/07/09 13:16:12 petere Exp $
1414
#
1515
# NOTES
1616
# non-essential whitespace is removed from the generated file.
@@ -45,13 +45,13 @@ do
4545
INCLUDE_DIR="$2"
4646
shift;;
4747
-I*)
48-
INCLUDE_DIR=`echo $1 | sed s/^-I//`
48+
INCLUDE_DIR=`echo $1 | sed -e 's/^-I//'`
4949
;;
5050
-o)
5151
OUTPUT_PREFIX="$2"
5252
shift;;
5353
-o*)
54-
OUTPUT_PREFIX=`echo $1 | sed s/^-o//`
54+
OUTPUT_PREFIX=`echo $1 | sed -e 's/^-o//'`
5555
;;
5656
--help)
5757
echo "$CMDNAME generates system catalog bootstrapping files."

0 commit comments

Comments
 (0)