]> granicus.if.org Git - postgresql/commitdiff
Make genbki.sh a configureable shell program to allow auto-detection
authorThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 14 Oct 1998 16:05:01 +0000 (16:05 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 14 Oct 1998 16:05:01 +0000 (16:05 +0000)
 of the proper cpp program.

src/backend/catalog/genbki.sh.in [moved from src/backend/catalog/genbki.sh with 96% similarity]

similarity index 96%
rename from src/backend/catalog/genbki.sh
rename to src/backend/catalog/genbki.sh.in
index 906fe504b8775244d5930d7d6dbf71fe0967f5cf..3eb219e3868643a03fb1830157ab51a5270da84c 100644 (file)
@@ -10,7 +10,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.13 1998/08/25 17:36:18 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh.in,v 1.1 1998/10/14 16:05:01 thomas Exp $
 #
 # NOTES
 #    non-essential whitespace is removed from the generated file.
@@ -23,20 +23,14 @@ trap "rm -f /tmp/genbki.tmp" 0 1 2 3 15
 # make sure it is empty
 >/tmp/genbki.tmp
 
-PATH=$PATH:/lib:/usr/ccs/lib:/usr/ccs/lbin             # to find cpp
-cpp /dev/null >/dev/null 2>&1
-if [ "$?" -ne 0 ]
-then   echo "Can't find cpp.  Exiting." 1>&2
-       exit 1
-fi
-
-BKIOPTS=''
 if [ $? != 0 ]
 then
     echo `basename $0`: Bad option
     exit 1
 fi
 
+BKIOPTS=''
+
 for opt in $*
 do
     case $opt in
@@ -268,7 +262,7 @@ END {
        }
 }
 ' | \
-cpp $BKIOPTS | \
+@CPP@ @CPPSTDIN@ $BKIOPTS | \
 sed -e '/^[    ]*$/d' \
     -e 's/[    ][      ]*/ /g' || exit 1