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

Commit 54121b9

Browse files
committed
Pass on all CPPFLAGS that look like -I* to the PL/Perl build.
(This previously worked, but must have gotten lost somewhere...)
1 parent 94b8640 commit 54121b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pl/plperl/GNUmakefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Header: /cvsroot/pgsql/src/pl/plperl/GNUmakefile,v 1.5 2000/10/24 17:01:05 tgl Exp $
1+
# $Header: /cvsroot/pgsql/src/pl/plperl/GNUmakefile,v 1.6 2000/11/02 18:40:13 petere Exp $
22

33
subdir = src/pl/plperl
44
top_builddir = ../../..
@@ -11,9 +11,9 @@ all: Makefile
1111
$(MAKE) -f $< all
1212

1313
Makefile: Makefile.PL
14-
@plperl_installdir='$(plperl_installdir)' \
15-
EXTRA_INCLUDES='-I$(top_srcdir)/src/include $(INCLUDES)' \
16-
$(PERL) $<
14+
plperl_installdir='$(plperl_installdir)' \
15+
EXTRA_INCLUDES='$(filter -I%, $(CPPFLAGS))' \
16+
$(PERL) $<
1717

1818
install: all installdirs
1919
$(MAKE) -f Makefile install

0 commit comments

Comments
 (0)