summaryrefslogtreecommitdiff
path: root/src/pl/tcl/modules/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2005-12-09 21:19:36 +0000
committerPeter Eisentraut <peter_e@gmx.net>2005-12-09 21:19:36 +0000
commita29c04a541def774b10b8f119efe3724d92ee99a (patch)
tree28e96bef9320953bb4b1c0e72760718338fa7bcb /src/pl/tcl/modules/Makefile
parent3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff)
downloadpostgresql-a29c04a541def774b10b8f119efe3724d92ee99a.tar.gz
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/pl/tcl/modules/Makefile')
-rw-r--r--src/pl/tcl/modules/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pl/tcl/modules/Makefile b/src/pl/tcl/modules/Makefile
index e44ef14ee9..279449e76e 100644
--- a/src/pl/tcl/modules/Makefile
+++ b/src/pl/tcl/modules/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/pl/tcl/modules/Makefile,v 1.3 2003/11/29 19:52:13 pgsql Exp $
+# $PostgreSQL: pgsql/src/pl/tcl/modules/Makefile,v 1.4 2005/12/09 21:19:36 petere Exp $
subdir = src/pl/tcl/modules
top_builddir = ../../../..
@@ -13,16 +13,16 @@ $(MODULES): %: %.in $(top_builddir)/src/Makefile.global
chmod a+x $@
install: all installdirs
- $(INSTALL_SCRIPT) pltcl_loadmod $(DESTDIR)$(bindir)/pltcl_loadmod
- $(INSTALL_SCRIPT) pltcl_delmod $(DESTDIR)$(bindir)/pltcl_delmod
- $(INSTALL_SCRIPT) pltcl_listmod $(DESTDIR)$(bindir)/pltcl_listmod
- $(INSTALL_DATA) $(srcdir)/unknown.pltcl $(DESTDIR)$(datadir)/unknown.pltcl
+ $(INSTALL_SCRIPT) pltcl_loadmod '$(DESTDIR)$(bindir)/pltcl_loadmod'
+ $(INSTALL_SCRIPT) pltcl_delmod '$(DESTDIR)$(bindir)/pltcl_delmod'
+ $(INSTALL_SCRIPT) pltcl_listmod '$(DESTDIR)$(bindir)/pltcl_listmod'
+ $(INSTALL_DATA) $(srcdir)/unknown.pltcl '$(DESTDIR)$(datadir)/unknown.pltcl'
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(datadir)
+ $(mkinstalldirs) '$(DESTDIR)$(bindir)' '$(DESTDIR)$(datadir)'
uninstall:
- rm -f $(DESTDIR)$(bindir)/pltcl_loadmod $(DESTDIR)$(bindir)/pltcl_delmod $(DESTDIR)$(bindir)/pltcl_listmod $(DESTDIR)$(datadir)/unknown.pltcl
+ rm -f '$(DESTDIR)$(bindir)/pltcl_loadmod' '$(DESTDIR)$(bindir)/pltcl_delmod' '$(DESTDIR)$(bindir)/pltcl_listmod' '$(DESTDIR)$(datadir)/unknown.pltcl'
clean distclean maintainer-clean:
rm -f $(MODULES)