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/utils | |
parent | 3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff) |
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/Makefile b/src/utils/Makefile index 77261445107..3f5b1fdc4b3 100644 --- a/src/utils/Makefile +++ b/src/utils/Makefile @@ -2,7 +2,7 @@ # # Makefile for utils # -# $PostgreSQL: pgsql/src/utils/Makefile,v 1.21 2004/07/30 12:26:40 petere Exp $ +# $PostgreSQL: pgsql/src/utils/Makefile,v 1.22 2005/12/09 21:19:36 petere Exp $ # # dllinit.o is only built on Win32 platform. # @@ -21,7 +21,7 @@ install: all installdirs $(INSTALL_DATA) dllinit.o $(DESTDIR)$(pgxsdir)/$(subdir)/ installdirs: - $(mkinstalldirs) $(DESTDIR)$(pgxsdir)/$(subdir) + $(mkinstalldirs) '$(DESTDIR)$(pgxsdir)/$(subdir)' uninstall: rm -f $(DESTDIR)$(pgxsdir)/$(subdir)/dllinit.o |