summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-12-27 23:53:21 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-12-27 23:53:21 +0000
commit37dc08bff00ab4bb25fe7239d54b028c6d474c74 (patch)
tree10f16eb470f80f6ed87c71739fe6dc3500ab8ea7 /src
parent1e78ea0ffe1b3698bfe0b1e24295e08bbdc310f9 (diff)
Use a more backward-compatible syntax for exports.list on Linux.
Per Thorkil Olesen.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/libpq/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile
index 4d2ef741700..d594e341a47 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.149 2006/09/27 21:29:17 tgl Exp $
+# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.149.2.1 2006/12/27 23:53:21 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: *; };' >>$@