mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 20:40:13 -04:00
17 lines
355 B
Bash
17 lines
355 B
Bash
$NetBSD: patch-data_pkgconfig.sh,v 1.1 2014/03/21 13:57:42 jperkin Exp $
|
|
|
|
Use correct rpath flag on SunOS.
|
|
|
|
--- data/pkgconfig.sh.orig 2013-02-04 17:28:18.000000000 +0000
|
|
+++ data/pkgconfig.sh
|
|
@@ -114,6 +114,9 @@ while [ $# -gt 0 ]; do
|
|
Darwin)
|
|
RPATH="-Wl,-rpath,\${libdir}"
|
|
;;
|
|
+ SunOS)
|
|
+ RPATH="-Wl,-R\${libdir}"
|
|
+ ;;
|
|
esac
|
|
fi
|
|
|