|
1 | 1 | #! /bin/sh
|
2 |
| -# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.15 2000/12/31 18:38:44 tgl Exp $ |
| 2 | +# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.16 2001/01/02 02:13:48 tgl Exp $ |
3 | 3 |
|
4 | 4 | me=`basename$0`
|
5 | 5 | :${TMPDIR=/tmp}
|
@@ -269,10 +269,11 @@ then
|
269 | 269 | temp_install="`pwd`/$temp_install"
|
270 | 270 | fi
|
271 | 271 |
|
272 |
| - bindir=$temp_install/$bindir |
273 |
| - libdir=$temp_install/$libdir |
274 |
| - datadir=$temp_install/$datadir |
| 272 | + bindir=$temp_install/install/$bindir |
| 273 | + libdir=$temp_install/install/$libdir |
| 274 | + datadir=$temp_install/install/$datadir |
275 | 275 | PGDATA=$temp_install/data
|
| 276 | + |
276 | 277 | if ["$unix_sockets"= no ];then
|
277 | 278 | PGHOST=$hostname
|
278 | 279 | export PGHOST
|
|
305 | 306 | if [!-d"$LOGDIR" ];then
|
306 | 307 | mkdir -p"$LOGDIR"|| { (exit 2);exit; }
|
307 | 308 | fi
|
308 |
| -$GMAKE -C"$top_builddir" DESTDIR="$temp_install" install with_perl=no with_python=no>"$LOGDIR/install.log"2>&1 |
| 309 | +$GMAKE -C"$top_builddir" DESTDIR="$temp_install/install" install with_perl=no with_python=no>"$LOGDIR/install.log"2>&1 |
309 | 310 |
|
310 | 311 | if [$?-ne 0 ]
|
311 | 312 | then
|
|