diff options
author | schmonz <schmonz@pkgsrc.org> | 2020-08-25 08:54:25 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2020-08-25 08:54:25 +0000 |
commit | 52667e51615c793e83740f5f94231211e722e1c1 (patch) | |
tree | 77d335996860c1369bc6cbecefec31952ad2db69 /lang/rust | |
parent | 34ca73c4e35d9fe50229dc9f9ae41a715d5d71c0 (diff) | |
download | pkgsrc-52667e51615c793e83740f5f94231211e722e1c1.tar.gz |
Add another post-install dylib rpath fixup for macOS. Bump PKGREVISION.
Diffstat (limited to 'lang/rust')
-rw-r--r-- | lang/rust/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/rust/Makefile b/lang/rust/Makefile index 5a068dc70a3..b7863f1edc3 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.188 2020/08/06 11:42:56 jperkin Exp $ +# $NetBSD: Makefile,v 1.189 2020/08/25 08:54:25 schmonz Exp $ DISTNAME= rustc-1.45.2-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://static.rust-lang.org/dist/ @@ -407,7 +408,8 @@ do-install: .PHONY: fix-darwin-install-name post-install: fix-darwin-install-name fix-darwin-install-name: - for f in ${DESTDIR}${PREFIX}/lib/librustc_macros-*.dylib; do \ + for f in ${DESTDIR}${PREFIX}/lib/librustc_macros-*.dylib \ + ${DESTDIR}${PREFIX}/lib/libchalk_derive-*.dylib; do \ install_name_tool -id `${ECHO} $$f | ${SED} -e 's,${DESTDIR},,g'` $$f; \ done .endif |