diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2005-12-09 21:19:36 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2005-12-09 21:19:36 +0000 |
| commit | a29c04a541def774b10b8f119efe3724d92ee99a (patch) | |
| tree | 28e96bef9320953bb4b1c0e72760718338fa7bcb /src/makefiles/Makefile.hpux | |
| parent | 3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff) | |
| download | postgresql-a29c04a541def774b10b8f119efe3724d92ee99a.tar.gz | |
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/makefiles/Makefile.hpux')
| -rw-r--r-- | src/makefiles/Makefile.hpux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index dc2e3406f6..e2805bd83a 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -19,9 +19,9 @@ LIBS := -lxnet $(LIBS) # Set up rpath so that the executables don't need SHLIB_PATH to be set. # (Note: --disable-rpath is a really bad idea on this platform...) ifeq ($(with_gnu_ld), yes) - rpath = -Wl,-rpath -Wl,$(rpathdir) + rpath = -Wl,-rpath -Wl,'$(rpathdir)' else - rpath = -Wl,+b -Wl,$(rpathdir) + rpath = -Wl,+b -Wl,'$(rpathdir)' endif # catch null pointer dereferences |
