Add POLLUTE=1 to perl Makefile.PL creations.

This commit is contained in:
Bruce Momjian 2000-03-25 14:25:31 +00:00
parent 5c462baebc
commit 0dd9558ed7
2 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.31 1999/12/16 01:25:15 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.32 2000/03/25 14:25:30 momjian Exp $
#
#-------------------------------------------------------------------------
@ -47,7 +47,7 @@ ifeq ($(USE_ODBC), true)
endif
perl5/Makefile: perl5/Makefile.PL
cd perl5 && $(PERL) Makefile.PL
cd perl5 && $(PERL) Makefile.PL POLLUTE=1
install-perl5: perl5/Makefile
$(MAKE) -C perl5 clean

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.3 2000/01/20 23:00:39 momjian Exp $
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.4 2000/03/25 14:25:31 momjian Exp $
#
#-------------------------------------------------------------------------
@ -30,11 +30,11 @@ ifeq ($(USE_PERL), true)
endif
plperl/Makefile: plperl/Makefile.PL
cd plperl && $(PERL) Makefile.PL
cd plperl && $(PERL) Makefile.PL POLLUTE=1
install-plperl: plperl/Makefile
$(MAKE) -C plperl clean
cd plperl && POSTGRES_HOME="$(POSTGRESDIR)" $(PERL) Makefile.PL
cd plperl && POSTGRES_HOME="$(POSTGRESDIR)" $(PERL) Makefile.PL POLLUTE=1
$(MAKE) -C plperl all
-@if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' plperl/Makefile` ]; then \
$(MAKE) $(MFLAGS) -C plperl install; \