From: Tom Lane Date: Sat, 25 Mar 2000 19:26:49 +0000 (+0000) Subject: Remove bogus complexity from build/install of plperl. This stuff was X-Git-Tag: REL9_0_0~23652 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0abebf0e7b9301d2b5bc6199f93e39418a6db1db;p=pg-rex%2Fsyncrep.git Remove bogus complexity from build/install of plperl. This stuff was apparently copied from the makefile for the perl5 interface module, which needs it for reasons explained in src/interfaces/Makefile. But none of those reasons apply to plperl. --- diff --git a/src/pl/Makefile b/src/pl/Makefile index aefd06707b..bc9825558e 100644 --- a/src/pl/Makefile +++ b/src/pl/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.4 2000/03/25 14:25:31 momjian Exp $ +# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.5 2000/03/25 19:26:49 tgl Exp $ # #------------------------------------------------------------------------- @@ -21,29 +21,9 @@ ifeq ($(USE_TCL), true) $(MAKE) -C tcl $@ endif ifeq ($(USE_PERL), true) - -@if [ "$@" = "install" ]; then \ - $(MAKE) $(MFLAGS) install-plperl; \ - else \ - $(MAKE) $(MFLAGS) plperl/Makefile; \ - $(MAKE) $(MFLAGS) -C plperl $@; \ - fi + $(MAKE) $(MFLAGS) plperl/Makefile + $(MAKE) $(MFLAGS) -C plperl $@ endif plperl/Makefile: plperl/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 POLLUTE=1 - $(MAKE) -C plperl all - -@if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' plperl/Makefile` ]; then \ - $(MAKE) $(MFLAGS) -C plperl install; \ - rm -f plperl/Makefile; \ - else \ - echo "Skipping install of Perl module for lack of permissions."; \ - echo "To install it, cd into interfaces/plperl, su to become the"; \ - echo "appropriate user, and do '$(MAKE) install'."; \ - fi - -.PHONY: install-plperl -