diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-10-19 19:05:07 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-10-23 22:36:27 +0200 |
commit | 737b1617927e5b8d1b7dc7f3e67cd7fcfb6830b7 (patch) | |
tree | 900f06b8f00b3f1f440905d7991a1617b4e410be /net-analyzer/tcpreplay | |
parent | app-text/zathura: remove unused patch(es) (diff) | |
download | gentoo-737b1617927e5b8d1b7dc7f3e67cd7fcfb6830b7.tar.gz gentoo-737b1617927e5b8d1b7dc7f3e67cd7fcfb6830b7.tar.bz2 gentoo-737b1617927e5b8d1b7dc7f3e67cd7fcfb6830b7.zip |
net-analyzer/tcpreplay: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27851
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-analyzer/tcpreplay')
-rw-r--r-- | net-analyzer/tcpreplay/files/tcpreplay-4.4.1-fix-bashism-configure.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/net-analyzer/tcpreplay/files/tcpreplay-4.4.1-fix-bashism-configure.patch b/net-analyzer/tcpreplay/files/tcpreplay-4.4.1-fix-bashism-configure.patch deleted file mode 100644 index f1d424274333..000000000000 --- a/net-analyzer/tcpreplay/files/tcpreplay-4.4.1-fix-bashism-configure.patch +++ /dev/null @@ -1,34 +0,0 @@ -https://github.com/appneta/tcpreplay/pull/714 - -From bd93776c50ec1d0574c72f253095afe22eb6bf73 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Sun, 13 Feb 2022 16:09:23 +0000 -Subject: [PATCH] build: fix bashism in configure - -configure scripts are run with /bin/sh which is supposed -to be a POSIX-compliant shell, so if /bin/sh is provided -by e.g. dash (like on Debian) rather than bash, we hit -errors. - -This has no effect on functionality for bash & -retains compatibility. - -Signed-off-by: Sam James <sam@gentoo.org> ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 11a1e4ea..4c577c42 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1808,7 +1808,7 @@ fi - dnl No 'make test' when cross compile - - AC_MSG_CHECKING(for 'make test' profile) --if test "$host" == "$build" ; then -+if test "$host" = "$build" ; then - AC_MSG_RESULT([yes]) - else - AC_MSG_WARN(Unable to do tests when cross-compiling) - |