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

Commit 1a1474b

Browse files
committed
Put back some not-so-unnecessary-as-all-that := usages. Per buildfarm.
1 parent 23b65b8 commit 1a1474b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/pl/plperl/GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Makefile for PL/Perl
2-
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.29 2007/02/09 15:56:00 petere Exp $
2+
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.30 2007/02/10 04:26:24 tgl Exp $
33

44
subdir = src/pl/plperl
55
top_builddir = ../../..
@@ -17,8 +17,8 @@ endif
1717
ifneq (,$(findstring yes, $(shared_libperl)$(allow_nonpic_in_shlib)))
1818

1919
ifeq ($(PORTNAME), win32)
20-
perl_archlibexp = $(subst \,/,$(perl_archlibexp))
21-
perl_privlibexp = $(subst \,/,$(perl_privlibexp))
20+
perl_archlibexp := $(subst \,/,$(perl_archlibexp))
21+
perl_privlibexp := $(subst \,/,$(perl_privlibexp))
2222
perl_embed_ldflags = -L$(perl_archlibexp)/CORE -lperl58
2323
override CPPFLAGS += -DPLPERL_HAVE_UID_GID
2424
endif

src/pl/plpython/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.27 2007/02/09 15:56:00 petere Exp $
1+
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.28 2007/02/10 04:26:24 tgl Exp $
22

33
subdir = src/pl/plpython
44
top_builddir = ../../..
@@ -17,7 +17,7 @@ endif
1717
# and we have to remove -lpython from the link since we are building our own
1818
ifeq ($(PORTNAME), win32)
1919
shared_libpython = yes
20-
python_includespec = $(subst \,/,$(python_includespec))
20+
python_includespec := $(subst \,/,$(python_includespec))
2121
override python_libspec =
2222
endif
2323

0 commit comments

Comments
 (0)