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

Commit a631143

Browse files
committed
use config.guess instead of uname -s to figure out system, so that we can include platform spcific changes ... thanks to Mark Hollomon <mhh@nortelnetworks.com> for the awk script used
1 parent c672559 commit a631143

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/regress.sh

Lines changed: 2 additions & 2 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.23 1999/01/23 21:36:00 tgl Exp $
2+
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.24 1999/04/14 14:02:00 scrappy Exp $
33
#
44
if [ $# -eq 0 ]
55
then
@@ -33,7 +33,7 @@ PGDATESTYLE="Postgres,US"; export PGDATESTYLE
3333
#FRONTEND=monitor
3434
FRONTEND="psql $HOST -n -e -q"
3535

36-
SYSTEM=`uname -s`
36+
SYSTEM=`../../config.guess awk -F\- '{ split($3,a,/[0-9]/); printf"%s-%s", $1, a[1] }'`
3737

3838
echo "=============== Notes... ================="
3939
echo "postmaster must already be running for the regression tests to succeed."

0 commit comments

Comments
 (0)