pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

rust180-bin: fix more library search paths



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Thu Sep 12 12:25:31 2024 +0200
Changeset:	b2067037b9b0aebddedb24713b818554518e7228

Modified Files:
	rust180-bin/Makefile

Log Message:
rust180-bin: fix more library search paths

Fixes installation with latest pkg_add.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b2067037b9b0aebddedb24713b818554518e7228

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 rust180-bin/Makefile | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diffs:
diff --git a/rust180-bin/Makefile b/rust180-bin/Makefile
index e365ad34c8..b42c0954db 100644
--- a/rust180-bin/Makefile
+++ b/rust180-bin/Makefile
@@ -257,8 +257,19 @@ FORCE_RPATH=		--force-rpath
 .PHONY: fix-relative-rpath
 post-install: fix-relative-rpath
 fix-relative-rpath:
-.  for bin in bin/clippy-driver bin/miri bin/rls bin/rust-analyzer \
-	bin/rustc bin/rustdoc libexec/rust-analyzer-proc-macro-srv
+.  for bin in \
+	bin/cargo \
+	bin/cargo-clippy \
+	bin/cargo-fmt \
+	bin/clippy-driver \
+	bin/miri  \
+	bin/rls \
+	bin/rust-analyzer \
+	bin/rust-demangler \
+	bin/rustc \
+	bin/rustdoc \
+	bin/rustfmt \
+	libexec/rust-analyzer-proc-macro-srv
 	if [ -f ${DESTDIR}${PREFIX}/${bin} ]; then \
 		${PREFIX}/bin/patchelf ${FORCE_RPATH} --set-rpath \
 		    ${PREFIX}/lib ${DESTDIR}${PREFIX}/${bin} ; \


Home | Main Index | Thread Index | Old Index