summaryrefslogtreecommitdiff
path: root/src/interfaces/Makefile
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1999-09-03 13:46:33 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1999-09-03 13:46:33 +0000
commitae01c7f5bb4f40386e64138ae33b12f862f13796 (patch)
treea30ada02ddcb77ece2830f5767316bc022a2130c /src/interfaces/Makefile
parent283df996c69b439dc37fc029e22e85b8929e1710 (diff)
downloadpostgresql-ae01c7f5bb4f40386e64138ae33b12f862f13796.tar.gz
Fix for perl5 on BSD/OS breaks most other platforms, so back it out.
istm that this would be a job for configure. Most modern OSes actually use perl5 by default ;)
Diffstat (limited to 'src/interfaces/Makefile')
-rw-r--r--src/interfaces/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile
index 17cb2a94e0..4b941f9012 100644
--- a/src/interfaces/Makefile
+++ b/src/interfaces/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.24 1999/08/16 20:12:12 momjian Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.25 1999/09/03 13:46:33 thomas Exp $
#
#-------------------------------------------------------------------------
@@ -46,11 +46,11 @@ ifeq ($(USE_ODBC), true)
endif
perl5/Makefile: perl5/Makefile.PL
- cd perl5 && perl5 Makefile.PL
+ cd perl5 && perl Makefile.PL
install-perl5: perl5/Makefile
$(MAKE) -C perl5 clean
- cd perl5 && POSTGRES_HOME="$(POSTGRESDIR)" perl5 Makefile.PL
+ cd perl5 && POSTGRES_HOME="$(POSTGRESDIR)" perl Makefile.PL
$(MAKE) -C perl5 all
@if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' perl5/Makefile` ]; then \
$(MAKE) $(MFLAGS) -C perl5 install; \