diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-01-06 10:34:07 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-01-07 01:19:30 +0100 |
commit | 65c29eb8428ae4a53076bc13a70a696a811e4bda (patch) | |
tree | 1e29eac55278d676de585320af4526d6be9c6ec8 /sys-fs/ntfs3g | |
parent | sys-libs/minizip-ng: remove unused patch (diff) | |
download | gentoo-65c29eb8428ae4a53076bc13a70a696a811e4bda.tar.gz gentoo-65c29eb8428ae4a53076bc13a70a696a811e4bda.tar.bz2 gentoo-65c29eb8428ae4a53076bc13a70a696a811e4bda.zip |
sys-fs/ntfs3g: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/34673
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-fs/ntfs3g')
-rw-r--r-- | sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch b/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch deleted file mode 100644 index 280620d0ee68..000000000000 --- a/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch +++ /dev/null @@ -1,36 +0,0 @@ -https://github.com/tuxera/ntfs-3g/pull/58 - -From a008fc4b3553583369111b145172a92542de4598 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Thu, 22 Sep 2022 04:00:45 +0100 -Subject: [PATCH] configure.ac: fix bashism in fuse check - -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: -``` -checking Windows OS... no -./configure: 13360: test: xinternal: unexpected operator -checking for pthread_create in -lpthread... yes -checking Solaris OS... no -``` - -Signed-off-by: Sam James <sam@gentoo.org> ---- a/configure.ac -+++ b/configure.ac -@@ -228,7 +228,7 @@ esac - - if test "x${enable_ntfs_3g}" != "xyes"; then - with_fuse="none" --elif test "x${with_fuse}" == "x"; then -+elif test "x${with_fuse}" = "x"; then - AC_MSG_CHECKING([fuse compatibility]) - case "${target_os}" in - linux*|solaris*) - |