pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/coreutils



Module Name:    pkgsrc
Committed By:   tnn
Date:           Wed Nov 15 15:21:18 UTC 2023

Modified Files:
        pkgsrc/sysutils/coreutils: Makefile

Log Message:
coreutils: fix Darwin rpath issue


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 pkgsrc/sysutils/coreutils/Makefile

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

Modified files:

Index: pkgsrc/sysutils/coreutils/Makefile
diff -u pkgsrc/sysutils/coreutils/Makefile:1.84 pkgsrc/sysutils/coreutils/Makefile:1.85
--- pkgsrc/sysutils/coreutils/Makefile:1.84     Wed Jul 27 14:34:10 2022
+++ pkgsrc/sysutils/coreutils/Makefile  Wed Nov 15 15:21:18 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.84 2022/07/27 14:34:10 ryoon Exp $
+# $NetBSD: Makefile,v 1.85 2023/11/15 15:21:18 tnn Exp $
 
 .include "../../sysutils/coreutils/Makefile.common"
 
@@ -60,6 +60,11 @@ post-install:
          ${LN} -sf ${PREFIX}/${PKGMANDIR}/man1/g${f:Q}.1 ${DESTDIR}${PREFIX}/${PKGGNUDIR}${PKGMANDIR}/man1/${f:Q}.1; \
        fi
 .endfor
+.if ${OPSYS} == "Darwin"
+       install_name_tool -id ${PREFIX}/libexec/coreutils/libstdbuf.so \
+       ${DESTDIR}${PREFIX}/libexec/coreutils/libstdbuf.so
+.endif
+
 
 #CONFIGURE_ARGS+=      --enable-install-program=su
 #.if ${OPSYS} == "NetBSD" ||  ${OPSYS} == "FreeBSD" || \



Home | Main Index | Thread Index | Old Index