mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
17 lines
355 B
Bash
17 lines
355 B
Bash
$NetBSD: patch-data_pkgconfig.sh,v 1.1 2014/03/21 14:02:26 jperkin Exp $
|
|
|
|
Use correct rpath flag on SunOS.
|
|
|
|
--- data/pkgconfig.sh.orig 2013-07-21 23:17:53.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
|
|
|