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/makefiles/Makefile.unixware | |
| parent | 3a20db975e73b507e8bf43fcbddd84d253ee78ef (diff) | |
Allow installation into directories containing spaces in the name.
Diffstat (limited to 'src/makefiles/Makefile.unixware')
| -rw-r--r-- | src/makefiles/Makefile.unixware | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/makefiles/Makefile.unixware b/src/makefiles/Makefile.unixware index cf446e1c0c9..3fa10f97d93 100644 --- a/src/makefiles/Makefile.unixware +++ b/src/makefiles/Makefile.unixware @@ -1,15 +1,15 @@ AROPT = crs ifeq ($(with_gnu_ld), yes) - export_dynamic = -Wl,-E + export_dynamic = -Wl,-E else - export_dynamic = -Wl,-Bexport + export_dynamic = -Wl,-Bexport endif ifeq ($(ld_R_works), yes) ifeq ($(with_gnu_ld), yes) - rpath = -Wl,-rpath,$(rpathdir) + rpath = -Wl,-rpath,'$(rpathdir)' else - rpath = -Wl,-R$(rpathdir) + rpath = -Wl,-R'$(rpathdir)' endif endif |
