summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-07-10 12:36:57 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-07-12 20:33:51 +0200
commit4701c7a890b99360b8d4b9b2cddbcc2b94e27574 (patch)
tree472097885869c31d535340c07df03a3834976fcc /net-misc/iperf
parentapp-admin/eclean-kernel: Bump to 2.99.5 (diff)
downloadgentoo-4701c7a890b99360b8d4b9b2cddbcc2b94e27574.tar.gz
gentoo-4701c7a890b99360b8d4b9b2cddbcc2b94e27574.tar.bz2
gentoo-4701c7a890b99360b8d4b9b2cddbcc2b94e27574.zip
net-misc/iperf: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31822 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc/iperf')
-rw-r--r--net-misc/iperf/files/iperf-3.12-fix-bashism.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/net-misc/iperf/files/iperf-3.12-fix-bashism.patch b/net-misc/iperf/files/iperf-3.12-fix-bashism.patch
deleted file mode 100644
index 1f3a321f42c9..000000000000
--- a/net-misc/iperf/files/iperf-3.12-fix-bashism.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-https://github.com/esnet/iperf/pull/1398
-
-From 3a03f775ca103f2e824abef903130280c57ca8ac Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Sun, 2 Oct 2022 02:58:59 +0100
-Subject: [PATCH] config/iperf_config_static_bin.m4: fix bashism
-
-configure scripts need to be runnable with a POSIX-compliant /bin/sh.
-
-On many (but not all!) systems, /bin/sh is provided by Bash, so errors
-like this aren't spotted. Notably Debian defaults to /bin/sh provided
-by dash which doesn't tolerate such bashisms as '=='.
-
-This retains compatibility with bash.
-
-Fixes configure warnings/errors like:
-```
-./configure: 2670: test: x: unexpected operator
-```
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/config/iperf_config_static_bin.m4
-+++ b/config/iperf_config_static_bin.m4
-@@ -7,6 +7,6 @@ AC_ARG_ENABLE([static-bin],
- [:])
- AM_CONDITIONAL([ENABLE_STATIC_BIN], [test x$enable_static_bin = xno])
-
--AS_IF([test "x$enable_static_bin" == xyes],
-+AS_IF([test "x$enable_static_bin" = xyes],
- [LDFLAGS="$LDFLAGS --static"]
- [])
---- a/configure
-+++ b/configure
-@@ -2667,7 +2667,7 @@ else
- fi
-
-
--if test "x$enable_static_bin" == xyes
-+if test "x$enable_static_bin" = xyes
- then :
- LDFLAGS="$LDFLAGS --static"
-
-