summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2020-08-03 22:34:23 +0000
committerjoerg <joerg@pkgsrc.org>2020-08-03 22:34:23 +0000
commitf271efb83d4427608e6a3568a9e0eef5139ea7cd (patch)
tree4f5deb6c1e2a6ce994951f47229f20f7bd56eaf3 /cross
parent24e3b408b8cd8e5c34d5c6c22bd4732d02ef88c1 (diff)
downloadpkgsrc-f271efb83d4427608e6a3568a9e0eef5139ea7cd.tar.gz
GC patches outside PATCHDIR.
Diffstat (limited to 'cross')
-rw-r--r--cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-contrib_download__prerequisites15
-rw-r--r--cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-libgo_mksysinfo.sh13
2 files changed, 0 insertions, 28 deletions
diff --git a/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-contrib_download__prerequisites b/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-contrib_download__prerequisites
deleted file mode 100644
index 3cb5f680c88..00000000000
--- a/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-contrib_download__prerequisites
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-contrib_download__prerequisites,v 1.1 2019/09/18 15:38:40 ryoon Exp $
-
-* Fix a POSIX portability issue
-
---- contrib/download_prerequisites.orig 2018-01-29 13:30:02.000000000 +0000
-+++ contrib/download_prerequisites
-@@ -122,7 +122,7 @@ md5_check() {
- md5_checksum_output=$(md5 -r "${file_to_check}")
- # Grab the text before the first space
- md5_checksum_detected="${md5_checksum_output%% *}"
-- [ "${md5_checksum_expected}" == "${md5_checksum_detected}" ] \
-+ [ "${md5_checksum_expected}" = "${md5_checksum_detected}" ] \
- || die "Cannot verify integrity of possibly corrupted file ${file_to_check}"
- echo "${file_to_check}: OK"
- }
diff --git a/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-libgo_mksysinfo.sh b/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-libgo_mksysinfo.sh
deleted file mode 100644
index 5ca532b211a..00000000000
--- a/cross/mingw-w64-x86_64-gcc-winpthreads/patches/patch-libgo_mksysinfo.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-libgo_mksysinfo.sh,v 1.1 2019/09/18 15:38:40 ryoon Exp $
-
---- libgo/mksysinfo.sh.orig 2019-03-19 14:00:59.000000000 +0000
-+++ libgo/mksysinfo.sh
-@@ -1127,7 +1127,7 @@ grep '^const _FALLOC_' gen-sysinfo.go |
- # Prefer largefile variant if available.
- # CentOS 5 does not have f_flags, so pull from f_spare.
- statfs=`grep '^type _statfs64 ' gen-sysinfo.go || true`
--if test "$statfs" == ""; then
-+if test "$statfs" = ""; then
- statfs=`grep '^type _statfs ' gen-sysinfo.go || true`
- fi
- if ! echo "$statfs" | grep f_flags; then