diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-28 00:01:05 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-28 00:01:05 +0000 |
commit | 36b870623698332144c73e950d6a8f91e883d708 (patch) | |
tree | feaee99f82095a79dd59565868467bbdb530f45e /src | |
parent | 65b541b38f5aa0d3163a91009a5d330f4c05cee6 (diff) | |
download | postgresql-36b870623698332144c73e950d6a8f91e883d708.tar.gz postgresql-36b870623698332144c73e950d6a8f91e883d708.zip |
Revert exports.list change pending closer study.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index 40c498abfee..2e05ed13a76 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -5,7 +5,7 @@ # Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.150 2006/12/27 23:53:13 tgl Exp $ +# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.151 2006/12/28 00:01:05 tgl Exp $ # #------------------------------------------------------------------------- @@ -140,7 +140,7 @@ ifeq ($(PORTNAME), linux) $(shlib): exports.list exports.list: exports.txt - echo 'VERSION { global:' >$@ + echo '{ global:' >$@ $(AWK) '/^[^#]/ {printf "%s;\n",$$1}' $< >>$@ echo ' local: *; };' >>$@ |