diff options
| author | Peter Eisentraut | 2007-02-09 15:56:00 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2007-02-09 15:56:00 +0000 |
| commit | c138b966d42e69446b52a3e65a596f0401c41a33 (patch) | |
| tree | 1542dc3cf0db17ec247d9c9309bdbac419c63720 /src/test | |
| parent | d7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff) | |
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index 277d65ccc6b..94c4bbf9582 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -6,7 +6,7 @@ # Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.65 2007/01/31 19:38:50 neilc Exp $ +# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.66 2007/02/09 15:56:00 petere Exp $ # #------------------------------------------------------------------------- @@ -14,7 +14,7 @@ subdir = src/test/regress top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -contribdir := $(top_builddir)/contrib +contribdir = $(top_builddir)/contrib # port number for temp-installation test postmaster TEMP_PORT = 5$(DEF_PGPORT) @@ -26,13 +26,13 @@ PSQLDIR = $(bindir) MULTIBYTE = SQL_ASCII # maximum simultaneous connections for parallel tests -MAXCONNOPT := +MAXCONNOPT = ifdef MAX_CONNECTIONS MAXCONNOPT += --max-connections=$(MAX_CONNECTIONS) endif # locale -NOLOCALE := +NOLOCALE = ifdef NO_LOCALE NOLOCALE += --no-locale endif |
