You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-geosciences/gpsd/files/gpsd-3.11-rpath.patch

13 lines
384 B

don't set the -rpath flag to the install dir as this breaks DESTDIR
--- a/SConstruct
+++ b/SConstruct
@@ -287,7 +287,7 @@
# Don't hack RPATH unless libdir points somewhere that is not on the
# minimum default load path.
-if env["shared"]:
+if env["shared"] and env["chrpath"]:
if env["libdir"] not in ["/usr/lib", "/lib"]:
env.Prepend(RPATH=[installdir('libdir')])