diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-21 22:05:53 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-21 22:05:53 +0000 |
commit | 425337dbe02c0c79e8221fb22138940d4e497902 (patch) | |
tree | b185b962971396521050c3d057c90d460d7f31d5 /src/gnutls_rpath.pl | |
parent | 55b4bfe5e75838d9701f22af012a0028e7f77279 (diff) |
Fixed gnutls_rpath.pl to do rpath for all paths, not just gnutls - this fixes an issue with systems that want to use libgcrypt or libgpg-error in nonstandard locations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5781 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/gnutls_rpath.pl')
-rw-r--r-- | src/gnutls_rpath.pl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gnutls_rpath.pl b/src/gnutls_rpath.pl deleted file mode 100644 index f47445581..000000000 --- a/src/gnutls_rpath.pl +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/perl -$data = `libgnutls-config --libs`; -$data =~ /-L(\S+)\s/; -$libpath = $1; -print "-Wl,--rpath -Wl,$libpath"; - |