diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-08-03 19:00:36 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-08-10 19:13:54 -0400 |
commit | f01561a0637d7f36bac3cef0a2533ee8dcbc2a37 (patch) | |
tree | ec18d65c07b1661b0db818df28239b043b216aac /media-libs/libprojectm | |
parent | media-libs/coin: Version bump 4.0.0 (diff) | |
download | gentoo-f01561a0637d7f36bac3cef0a2533ee8dcbc2a37.tar.gz gentoo-f01561a0637d7f36bac3cef0a2533ee8dcbc2a37.tar.bz2 gentoo-f01561a0637d7f36bac3cef0a2533ee8dcbc2a37.zip |
media-libs/libprojectm: remove unused patch
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16981
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'media-libs/libprojectm')
-rw-r--r-- | media-libs/libprojectm/files/libprojectm-3.1.3-bashisms.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/media-libs/libprojectm/files/libprojectm-3.1.3-bashisms.patch b/media-libs/libprojectm/files/libprojectm-3.1.3-bashisms.patch deleted file mode 100644 index 8d84ece802cb..000000000000 --- a/media-libs/libprojectm/files/libprojectm-3.1.3-bashisms.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 8a522d975890a4512be0f04285f356c6db653a57 Mon Sep 17 00:00:00 2001 -From: Lars Wendler <polynomial-c@gentoo.org> -Date: Thu, 14 May 2020 11:46:50 +0200 -Subject: [PATCH] configure.ac: Avoid bashisms - -or else we end up like this: - - ./configure: 18902: ./configure: Syntax error: redirection unexpected - -or - - ./configure: 20152: ./configure: my_CFLAGS+=-DDATADIR_PATH=\""$(pkgdatadir)"\" : not found - ./configure: 20153: ./configure: my_CFLAGS+=-I$(top_srcdir)/vendor : not found - -Gentoo-bug: https://bugs.gentoo.org/714098 -Signed-off-by: Lars Wendler <polynomial-c@gentoo.org> ---- - configure.ac | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 5fa53eca5..ecf85e076 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -163,7 +163,7 @@ AC_PREFIX_DEFAULT([/usr/local]) - - AC_PROG_MKDIR_P - --AS_IF([grep android <<< ${host}], [], -+AS_IF([echo ${host} | grep -Fq android], [], - [AX_CHECK_COMPILE_FLAG([-stdlib=libc++], [ - CXXFLAGS="$CXXFLAGS -stdlib=libc++"]) - ]) -@@ -237,10 +237,10 @@ AM_CONDITIONAL([ENABLE_EMSCRIPTEN], [test "x$enable_emscripten" = "xyes"]) - AM_CONDITIONAL([ENABLE_PRESET_SUBDIRS], [test "x$enable_preset_subdirs" = "xyes"]) - - --my_CFLAGS="-Wall -Wchar-subscripts -Wformat-security -Wpointer-arith -Wshadow -Wsign-compare -Wtype-limits " -+my_CFLAGS="-Wall -Wchar-subscripts -Wformat-security -Wpointer-arith -Wshadow -Wsign-compare -Wtype-limits" - #my_CFLAGS+="-fsanitize=address -fno-omit-frame-pointer " --my_CFLAGS+='-DDATADIR_PATH=\""$(pkgdatadir)"\" ' --my_CFLAGS+='-I$(top_srcdir)/vendor ' -+my_CFLAGS="${my_CFLAGS} -DDATADIR_PATH=\\\"\"\$(pkgdatadir)\\\"\"" -+my_CFLAGS="${my_CFLAGS} -I\$(top_srcdir)/vendor" - AC_SUBST([my_CFLAGS]) - - |