diff options
author | David Tardon <dtardon@redhat.com> | 2012-04-19 19:27:19 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-04-19 19:34:18 +0200 |
commit | 9da0670b601c8c186b0bfbd28ea055016db376ad (patch) | |
tree | 3ae65384521bc546dc8edcc5da23c3cacfe59443 /solenv | |
parent | ab6e1860ba5d41b992b9695121b5a311f2cab3b3 (diff) |
extension libs should have no RPATH
At least that is how it seems to work in the old build system:
LINFLAGSRUNPATH_OXT in solenv/inc/unxmacx.mk is empty, just like for
other platforms . On the other side, macosx-change-install-names.pl only
lists OXT in combination with URELIB... Now choose :-)
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/macosx.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk index 2ab1336d3c3b..ab955cf88d51 100644 --- a/solenv/gbuild/platform/macosx.mk +++ b/solenv/gbuild/platform/macosx.mk @@ -162,8 +162,7 @@ gb_LinkTarget__RPATHS := \ # $(call gb_LinkTarget__get_installname,libfilename,soversion,layerprefix) define gb_LinkTarget__get_installname -$(if $(3),-install_name '$(3)$(1)$(if $(2),.$(2))', - $(call gb_Output_error,cannot determine -install_name for $(3))) +$(if $(3),-install_name '$(3)$(1)$(if $(2),.$(2))') endef gb_LinkTarget_CFLAGS := $(gb_CFLAGS) |