diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-02-10 04:26:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-02-10 04:26:24 +0000 |
commit | 1a1474b4c019c09032114906a049bbe3b70052fc (patch) | |
tree | f0bedfe4c33f9685b39ca23c9f438c3d20c74ab3 /src | |
parent | 23b65b8063c8b6e33ac8a84a33ecab8ff8a4177e (diff) | |
download | postgresql-1a1474b4c019c09032114906a049bbe3b70052fc.tar.gz postgresql-1a1474b4c019c09032114906a049bbe3b70052fc.zip |
Put back some not-so-unnecessary-as-all-that := usages. Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plperl/GNUmakefile | 6 | ||||
-rw-r--r-- | src/pl/plpython/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index b91e8194909..46113fdf045 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.29 2007/02/09 15:56:00 petere Exp $ +# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.30 2007/02/10 04:26:24 tgl Exp $ subdir = src/pl/plperl top_builddir = ../../.. @@ -17,8 +17,8 @@ endif ifneq (,$(findstring yes, $(shared_libperl)$(allow_nonpic_in_shlib))) ifeq ($(PORTNAME), win32) -perl_archlibexp = $(subst \,/,$(perl_archlibexp)) -perl_privlibexp = $(subst \,/,$(perl_privlibexp)) +perl_archlibexp := $(subst \,/,$(perl_archlibexp)) +perl_privlibexp := $(subst \,/,$(perl_privlibexp)) perl_embed_ldflags = -L$(perl_archlibexp)/CORE -lperl58 override CPPFLAGS += -DPLPERL_HAVE_UID_GID endif diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index b9a0821c0aa..0b52c3d238c 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.27 2007/02/09 15:56:00 petere Exp $ +# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.28 2007/02/10 04:26:24 tgl Exp $ subdir = src/pl/plpython top_builddir = ../../.. @@ -17,7 +17,7 @@ endif # and we have to remove -lpython from the link since we are building our own ifeq ($(PORTNAME), win32) shared_libpython = yes -python_includespec = $(subst \,/,$(python_includespec)) +python_includespec := $(subst \,/,$(python_includespec)) override python_libspec = endif |