diff options
| author | Peter Eisentraut | 2005-12-09 21:19:36 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2005-12-09 21:19:36 +0000 |
| commit | a29c04a541def774b10b8f119efe3724d92ee99a (patch) | |
| tree | 28e96bef9320953bb4b1c0e72760718338fa7bcb /src/bin/ipcclean | |
| parent | 3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff) | |
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/bin/ipcclean')
| -rw-r--r-- | src/bin/ipcclean/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/ipcclean/Makefile b/src/bin/ipcclean/Makefile index d3a43c2aaed..e53e1cf3856 100644 --- a/src/bin/ipcclean/Makefile +++ b/src/bin/ipcclean/Makefile @@ -5,7 +5,7 @@ # Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/bin/ipcclean/Makefile,v 1.18 2005/01/01 20:44:20 tgl Exp $ +# $PostgreSQL: pgsql/src/bin/ipcclean/Makefile,v 1.19 2005/12/09 21:19:35 petere Exp $ # #------------------------------------------------------------------------- @@ -20,13 +20,13 @@ ipcclean: ipcclean.sh chmod a+x $@ install: all installdirs - $(INSTALL_SCRIPT) ipcclean $(DESTDIR)$(bindir)/ipcclean + $(INSTALL_SCRIPT) ipcclean '$(DESTDIR)$(bindir)/ipcclean' installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) + $(mkinstalldirs) '$(DESTDIR)$(bindir)' uninstall: - rm -f $(DESTDIR)$(bindir)/ipcclean + rm -f '$(DESTDIR)$(bindir)/ipcclean' clean distclean maintainer-clean: rm -f ipcclean |
