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