Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit be1d9fe

Browse files
committed
Update make_mkid for mkid version 4.0.
1 parent 175dbf7 commit be1d9fe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/test/regress/regress.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.45 2000/03/16 14:37:33 thomas Exp $
2+
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.46 2000/03/31 01:41:26 momjian Exp $
33
#
44
if [ $# -eq 0 ]; then
55
echo "Syntax: $0 <hostname> [extra-tests]"
@@ -10,7 +10,7 @@ hostname=$1
1010
shift
1111
extratests="$*"
1212

13-
if [ "x$hostname" = "xwin" -o "x$hostname" = "xi386-pc-qnx4" ]; then
13+
if [ "x$hostname" = "xwin" -o "x$hostname" = "xi386-qnx-qnx4" ]; then
1414
HOSTLOC="-h localhost"
1515
else
1616
HOSTLOC=""
@@ -79,7 +79,7 @@ if [ $? -ne 0 ]; then
7979
exit 1
8080
fi
8181

82-
if [ "x$hostname" != "xi386-pc-qnx4" ]; then
82+
if [ "x$hostname" != "xi386-qnx-qnx4" ]; then
8383
echo "=============== installing languages... ================="
8484
$ECHO_N "installing PL/pgSQL .. " $ECHO_C
8585
createlang $HOSTLOC plpgsql regression
@@ -94,7 +94,7 @@ fi
9494
echo "=============== running regression queries... ================="
9595
echo "" > regression.diffs
9696

97-
if [ "x$hostname" = "xi386-pc-qnx4" ]; then
97+
if [ "x$hostname" = "xi386-qnx-qnx4" ]; then
9898
DIFFOPT="-b"
9999
else
100100
DIFFOPT="-w"

src/tools/make_mkid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
find `pwd`/ \( -name _deadcode -a -prune \) -o \
3-
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
3+
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid
44

55
find . -name 'CVS' -prune -o -type d -print |while read DIR
66
do

0 commit comments

Comments
 (0)