From 081cba45e684bd7cac26f4052ab30fd0f55432bd Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Mon, 27 Mar 2000 22:39:13 +0000
Subject: [PATCH] Allow compile to finish even if plperl fails, which it does
 now.

---
 src/pl/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/pl/Makefile b/src/pl/Makefile
index bc9825558ed..d20104e23b3 100644
--- a/src/pl/Makefile
+++ b/src/pl/Makefile
@@ -7,7 +7,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.5 2000/03/25 19:26:49 tgl Exp $
+#    $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.6 2000/03/27 22:39:13 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -21,8 +21,8 @@ ifeq ($(USE_TCL), true)
 	$(MAKE) -C tcl $@
 endif
 ifeq ($(USE_PERL), true)
-	$(MAKE) $(MFLAGS) plperl/Makefile
-	$(MAKE) $(MFLAGS) -C plperl $@
+	-$(MAKE) $(MFLAGS) plperl/Makefile
+	-$(MAKE) $(MFLAGS) -C plperl $@
 endif
 
 plperl/Makefile: plperl/Makefile.PL
-- 
GitLab