]> granicus.if.org Git - postgresql/commitdiff
Use a more backward-compatible syntax for exports.list on Linux.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 27 Dec 2006 23:53:13 +0000 (23:53 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 27 Dec 2006 23:53:13 +0000 (23:53 +0000)
Per Thorkil Olesen.

src/interfaces/libpq/Makefile

index 4d2ef74170092494534be22965e71dcfb507b3ed..40c498abfee8298be122fdf554db1997eadaf28c 100644 (file)
@@ -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.149 2006/09/27 21:29:17 tgl Exp $
+# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.150 2006/12/27 23:53:13 tgl Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -140,7 +140,7 @@ ifeq ($(PORTNAME), linux)
 $(shlib): exports.list
 
 exports.list: exports.txt
-       echo '{ global:' >$@
+       echo 'VERSION { global:' >$@
        $(AWK) '/^[^#]/ {printf "%s;\n",$$1}' $< >>$@
        echo ' local: *; };' >>$@