pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/wasi-libc
Module Name: pkgsrc
Committed By: gutteridge
Date: Thu Aug 28 01:27:25 UTC 2025
Modified Files:
pkgsrc/lang/wasi-libc: distinfo
Added Files:
pkgsrc/lang/wasi-libc/patches: patch-scripts_install-include-headers.sh
Log Message:
wasi-libc: fix build issue on SunOS (and possibly others)
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/wasi-libc/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/lang/wasi-libc/patches/patch-scripts_install-include-headers.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/wasi-libc/distinfo
diff -u pkgsrc/lang/wasi-libc/distinfo:1.5 pkgsrc/lang/wasi-libc/distinfo:1.6
--- pkgsrc/lang/wasi-libc/distinfo:1.5 Tue Aug 26 07:53:56 2025
+++ pkgsrc/lang/wasi-libc/distinfo Thu Aug 28 01:27:24 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2025/08/26 07:53:56 ryoon Exp $
+$NetBSD: distinfo,v 1.6 2025/08/28 01:27:24 gutteridge Exp $
BLAKE2s (WebAssembly-WASI-59cbe140561db52fc505555e859de884e0ee7f00.tar.gz) = e13f04fd0def3ffba6758bc700db814329a3d8dbae6df82010b1bdb5f0fbf072
SHA512 (WebAssembly-WASI-59cbe140561db52fc505555e859de884e0ee7f00.tar.gz) =
974228b9b4332f1805d6425a3bed2217604a63baa5ea751ebc106d57b6ec1d211453295f0a878c06bf92bc68d5173de1dffa18c56b6513e818b1d429dc312742
@@ -10,3 +10,4 @@ BLAKE2s (wasi-libc-0.0.0pre20250809-0879
SHA512 (wasi-libc-0.0.0pre20250809-08799da37ae52955427ebec1336b49d6a8eb5051.tar.gz) =
3a1c0ba0d24fc0ff9bca936e4e747efa3c6f1f5177d005d99582674a5f96d88db63622145df0a4a6b128364a80193df14e7269bc144254b57a1402bf1e534730
Size (wasi-libc-0.0.0pre20250809-08799da37ae52955427ebec1336b49d6a8eb5051.tar.gz) = 1473084 bytes
SHA1 (patch-Makefile) = 2dc0f3ed86a2d57061d0dfe0d2fb9e13f444e6da
+SHA1 (patch-scripts_install-include-headers.sh) = d5232f85147f131726cad794187da62736f2580c
Added files:
Index: pkgsrc/lang/wasi-libc/patches/patch-scripts_install-include-headers.sh
diff -u /dev/null pkgsrc/lang/wasi-libc/patches/patch-scripts_install-include-headers.sh:1.1
--- /dev/null Thu Aug 28 01:27:25 2025
+++ pkgsrc/lang/wasi-libc/patches/patch-scripts_install-include-headers.sh Thu Aug 28 01:27:25 2025
@@ -0,0 +1,18 @@
+$NetBSD: patch-scripts_install-include-headers.sh,v 1.1 2025/08/28 01:27:25 gutteridge Exp $
+
+Don't use "-v" with cp and rm, some platforms like SunOS don't
+support these flags.
+
+--- scripts/install-include-headers.sh.orig 2025-08-27 23:12:09.421796184 +0000
++++ scripts/install-include-headers.sh
+@@ -16,8 +16,8 @@ if [[ -z "${SYSROOT_INC}" || -z "${TARGE
+ exit 1
+ fi
+ # The commands are available for override to allow dry runs.
+-CP="${CP:-cp -v}"
+-RM="${RM:-rm -v}"
++CP="${CP:-cp}"
++RM="${RM:-rm}"
+ MKDIR="${MKDIR:-mkdir}"
+ SED="${SED:-sed}"
+
Home |
Main Index |
Thread Index |
Old Index