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/pgevent | |
| parent | 3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff) | |
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/bin/pgevent')
| -rw-r--r-- | src/bin/pgevent/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgevent/Makefile b/src/bin/pgevent/Makefile index 8309496670..55b2b154b2 100644 --- a/src/bin/pgevent/Makefile +++ b/src/bin/pgevent/Makefile @@ -28,10 +28,10 @@ pgmsgevent.o: pgmsgevent.rc win32ver.rc all-lib: $(NAME) install-lib: $(NAME) - $(INSTALL_STLIB) $< $(DESTDIR)$(libdir)/$< + $(INSTALL_STLIB) $< '$(DESTDIR)$(libdir)/$<' uninstall-lib: - rm -f $(DESTDIR)$(libdir)/$(NAME) + rm -f '$(DESTDIR)$(libdir)/$(NAME)' clean distclean: rm -f $(OBJS) $(NAME) win32ver.rc |
