Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 734a56c

Browse files
committed
Escape # character in variable assignment
1 parent d391bda commit 734a56c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.shlib

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1998, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.110 2008/02/26 06:41:23 petere Exp $
9+
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.111 2008/02/26 10:30:06 petere Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -116,7 +116,7 @@ ifeq ($(PORTNAME), darwin)
116116
endif
117117
shlib = lib$(NAME).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)$(DLSUFFIX)
118118
shlib_major = lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX)
119-
BUILD.exports = $(AWK) '/^[^#]/ {printf "_%s\n",$$1}' $< >$@
119+
BUILD.exports = $(AWK) '/^[^\#]/ {printf "_%s\n",$$1}' $< >$@
120120
ifneq (,$(SHLIB_EXPORTS))
121121
exported_symbols_list = -exported_symbols_list $(SHLIB_EXPORTS:%.txt=%.list)
122122
endif

0 commit comments

Comments
 (0)