From: Bruce Momjian Date: Mon, 16 Aug 1999 20:10:25 +0000 (+0000) Subject: Fix for perl5 on BSD/OS. X-Git-Tag: REL6_5_2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49df34501671ea093d0e3a6d8357f504da343040;p=thirdparty%2Fpostgresql.git Fix for perl5 on BSD/OS. --- diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile index 82e57bc1ac1..8ce06e22e9d 100644 --- a/src/interfaces/Makefile +++ b/src/interfaces/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.23 1999/05/21 19:03:48 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.23.2.1 1999/08/16 20:10:25 momjian Exp $ # #------------------------------------------------------------------------- @@ -46,11 +46,11 @@ ifeq ($(USE_ODBC), true) endif perl5/Makefile: perl5/Makefile.PL - cd perl5 && perl Makefile.PL + cd perl5 && perl5 Makefile.PL install-perl5: perl5/Makefile $(MAKE) -C perl5 clean - cd perl5 && POSTGRES_HOME="$(POSTGRESDIR)" perl Makefile.PL + cd perl5 && POSTGRES_HOME="$(POSTGRESDIR)" perl5 Makefile.PL $(MAKE) -C perl5 all @if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' perl5/Makefile` ]; then \ $(MAKE) $(MFLAGS) -C perl5 install; \