diff options
| author | Tom Lane | 2004-11-19 00:41:39 +0000 |
|---|---|---|
| committer | Tom Lane | 2004-11-19 00:41:39 +0000 |
| commit | a9ddd649df46afde8f26dd9f85f05292e8da1f4b (patch) | |
| tree | d1dd63d725cd92adc627418d73ea76e31ce93da4 /src/makefiles/Makefile.unixware | |
| parent | b6038484f8c9bb2760c4a5c285b67d4eebeb30b4 (diff) | |
Modify the platform-specific makefiles so that macro 'rpath' is defined
in terms of macro 'rpathdir', as I proposed a few weeks ago. In itself
this commit shouldn't change the behavior at all, but it opens the door
to using special rpaths for the PL shared libraries, as seems to be
needed for plperl in particular.
Diffstat (limited to 'src/makefiles/Makefile.unixware')
| -rw-r--r-- | src/makefiles/Makefile.unixware | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.unixware b/src/makefiles/Makefile.unixware index 3372a8e5747..e8953756a67 100644 --- a/src/makefiles/Makefile.unixware +++ b/src/makefiles/Makefile.unixware @@ -7,9 +7,9 @@ endif ifeq ($(ld_R_works), yes) ifeq ($(with_gnu_ld), yes) - rpath = -Wl,-rpath,$(libdir) + rpath = -Wl,-rpath,$(rpathdir) else - rpath = -Wl,-R$(libdir) + rpath = -Wl,-R$(rpathdir) endif endif shlib_symbolic = -Wl,-Bsymbolic |
