diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2007-09-09 22:53:33 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2007-09-09 22:53:33 +0000 |
commit | 43df609daa0dbc941338564d0d77cfd852ab8385 (patch) | |
tree | c5f4fd2ce9b265936c7e92ac9efc6fac99cd7188 | |
parent | 0cb74d3cec086eab637b8016ae7ade2cbf546223 (diff) | |
download | postgresql-43df609daa0dbc941338564d0d77cfd852ab8385.tar.gz postgresql-43df609daa0dbc941338564d0d77cfd852ab8385.zip |
fix typo in regression Makefile.
-rw-r--r-- | src/test/regress/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index 2e0a6466644..0df7b9fa2c9 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.69 2007/09/09 20:40:54 adunstan Exp $ +# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.70 2007/09/09 22:53:33 adunstan Exp $ # #------------------------------------------------------------------------- @@ -22,7 +22,7 @@ TEMP_PORT = 5$(DEF_PGPORT) # file with extra config for temp build TEMP_CONF = ifdef TEMP_CONFIG -TEMP_CONF += --temp-config=S(TEMP_CONFIG) +TEMP_CONF += --temp-config=$(TEMP_CONFIG) endif # where to find psql for testing an existing installation |