diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-13 17:12:56 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-13 17:12:56 +0000 |
commit | 5a4c2a75d128063249b2c66cc7869252dca619a8 (patch) | |
tree | da7f4cd345c3aef65ce2d9c736a9b9a5159e1835 | |
parent | 0016911b5d39fd6b48e8e7c9466a4fe0b7483e2f (diff) |
Remove extraneous space after -L ... it confuses SHLIB_LINK filter -L
hack.
-rw-r--r-- | src/pl/plperl/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index c7c8fa58c33..455eef5819d 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -1,5 +1,5 @@ # Makefile for PL/Perl -# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.24 2005/07/06 22:44:49 momjian Exp $ +# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.25 2005/07/13 17:12:56 tgl Exp $ subdir = src/pl/plperl top_builddir = ../../.. @@ -19,7 +19,7 @@ ifneq (,$(findstring yes, $(shared_libperl)$(allow_nonpic_in_shlib))) ifeq ($(PORTNAME), win32) perl_archlibexp := $(subst \,/,$(perl_archlibexp)) perl_privlibexp := $(subst \,/,$(perl_privlibexp)) -perl_embed_ldflags := -L $(perl_archlibexp)/CORE -lperl58 +perl_embed_ldflags := -L$(perl_archlibexp)/CORE -lperl58 override CPPFLAGS += -DPLPERL_HAVE_UID_GID endif |