aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plperl/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plperl/GNUmakefile')
-rw-r--r--src/pl/plperl/GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile
index 455eef5819d..1831f9ddf8a 100644
--- a/src/pl/plperl/GNUmakefile
+++ b/src/pl/plperl/GNUmakefile
@@ -1,5 +1,5 @@
# Makefile for PL/Perl
-# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.25 2005/07/13 17:12:56 tgl Exp $
+# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.26 2005/12/09 21:19:36 petere Exp $
subdir = src/pl/plperl
top_builddir = ../../..
@@ -70,7 +70,7 @@ endif
install: all installdirs
ifeq ($(enable_shared), yes)
- $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(pkglibdir)/plperl$(DLSUFFIX)
+ $(INSTALL_SHLIB) $(shlib) '$(DESTDIR)$(pkglibdir)/plperl$(DLSUFFIX)'
else
@echo "*****"; \
echo "* PL/Perl was not installed due to lack of shared library support."; \
@@ -78,10 +78,10 @@ else
endif
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
+ $(mkinstalldirs) '$(DESTDIR)$(pkglibdir)'
uninstall:
- rm -f $(DESTDIR)$(pkglibdir)/plperl$(DLSUFFIX)
+ rm -f '$(DESTDIR)$(pkglibdir)/plperl$(DLSUFFIX)'
installcheck: submake
$(SHELL) $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS)