diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2008-02-26 10:30:06 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2008-02-26 10:30:06 +0000 |
commit | 734a56ca2e3196a4fcebdc7255f6177d6431bba6 (patch) | |
tree | 5db0a1fc5b262c379f7c4443879361122734f05d /src | |
parent | d391bdac50a550fe1f10e9683ee8da59eb99adea (diff) | |
download | postgresql-734a56ca2e3196a4fcebdc7255f6177d6431bba6.tar.gz postgresql-734a56ca2e3196a4fcebdc7255f6177d6431bba6.zip |
Escape # character in variable assignment
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 3cb5e55d8e2..b2adc2eb05f 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # IDENTIFICATION -# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.110 2008/02/26 06:41:23 petere Exp $ +# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.111 2008/02/26 10:30:06 petere Exp $ # #------------------------------------------------------------------------- @@ -116,7 +116,7 @@ ifeq ($(PORTNAME), darwin) endif shlib = lib$(NAME).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)$(DLSUFFIX) shlib_major = lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX) - BUILD.exports = $(AWK) '/^[^#]/ {printf "_%s\n",$$1}' $< >$@ + BUILD.exports = $(AWK) '/^[^\#]/ {printf "_%s\n",$$1}' $< >$@ ifneq (,$(SHLIB_EXPORTS)) exported_symbols_list = -exported_symbols_list $(SHLIB_EXPORTS:%.txt=%.list) endif |