diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-07 14:22:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:30 -0500 |
commit | 40de04329d604c7d5b3fe0a3ed9e034404575464 (patch) | |
tree | ce085c4589546fe363cf860efce57374d1a2261a | |
parent | a8c023ea79b1eb4f4f268e23a3358e7bab7d8e93 (diff) | |
download | samba-40de04329d604c7d5b3fe0a3ed9e034404575464.tar.gz samba-40de04329d604c7d5b3fe0a3ed9e034404575464.tar.xz samba-40de04329d604c7d5b3fe0a3ed9e034404575464.zip |
r13943: the -rpath-link should be only used for binaries,
otherwise application linking to the installed lib would look
at the builddir for searching other libs
metze
(This used to be commit f4996fbacc58618bb04c5587b4c45925cc430997)
-rw-r--r-- | source4/build/smb_build/makefile.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 5abc03d3502..269deb5dddf 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -312,7 +312,7 @@ __EOD__ $installdir/$ctx->{LIBRARY_REALNAME}: \$($ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST) \$($ctx->{TYPE}_$ctx->{NAME}_OBJ_LIST) \@echo Linking \$\@ - \@\$(SHLD) \$(SHLD_FLAGS) -o \$\@ \$(INSTALL_LINK_FLAGS) \\ + \@\$(SHLD) \$(SHLD_FLAGS) -o \$\@ \\ \$($ctx->{TYPE}_$ctx->{NAME}_LINK_FLAGS) \\ \$($ctx->{TYPE}_$ctx->{NAME}_LINK_LIST) |