diff options
author | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2022-12-27 09:05:33 +0100 |
---|---|---|
committer | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2022-12-27 09:05:33 +0100 |
commit | ce40379b1450f30be868492d950a01aaac80c2d9 (patch) | |
tree | 02ae070f3217035637d1a5c8e74611474d28d6c4 /patches | |
parent | eef1e4320236ab3e16a759d2a93e8ea9138d57f2 (diff) | |
download | midipix_build-ce40379b1450f30be868492d950a01aaac80c2d9.tar.bz2 midipix_build-ce40379b1450f30be868492d950a01aaac80c2d9.tar.xz |
patches/autoconf_2_64_host-2.64.local.patch: call help2man w/ --no-discard-stderr (fixes build on Arch Linux) (via imfatf1sh)
patches/autoconf_host-2.69.local.patch: call help2man w/ --no-discard-stderr (fixes build on Arch Linux) (via imfatf1sh)
Diffstat (limited to 'patches')
-rw-r--r-- | patches/autoconf_2_64_host-2.64.local.patch | 24 | ||||
-rw-r--r-- | patches/autoconf_host-2.69.local.patch | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/patches/autoconf_2_64_host-2.64.local.patch b/patches/autoconf_2_64_host-2.64.local.patch index c379c23e..29651f5c 100644 --- a/patches/autoconf_2_64_host-2.64.local.patch +++ b/patches/autoconf_2_64_host-2.64.local.patch @@ -58,3 +58,27 @@ -e 's|@M4[@]|$(M4)|g' \ -e 's|@AWK[@]|$(AWK)|g' \ -e 's|@VERSION[@]|$(VERSION)|g' \ +--- autoconf-2.69/man/Makefile.am 2022-12-27 15:22:52.186142107 +0800 ++++ autoconf-2.69/man/Makefile.am.orig 2012-01-21 21:46:39.000000000 +0800 +@@ -58,7 +58,8 @@ + --include=$*.x \ + --include=$(srcdir)/common.x \ + --source='$(PACKAGE_STRING)' \ +- --output=$@.t `echo '$*' | sed 's,.*/,,'` ++ --output=$@.t \ ++ --no-discard-stderr `echo '$*' | sed 's,.*/,,'` + if sed $(remove_time_stamp) $@ >$@a.t 2>/dev/null && \ + sed $(remove_time_stamp) $@.t | cmp $@a.t - >/dev/null 2>&1; then \ + touch $@; \ +--- autoconf-2.69/man/Makefile.in 2022-12-27 15:23:19.743692892 +0800 ++++ autoconf-2.69/man/Makefile.in.orig 2012-04-25 10:40:26.000000000 +0800 +@@ -464,7 +464,8 @@ + --include=$*.x \ + --include=$(srcdir)/common.x \ + --source='$(PACKAGE_STRING)' \ +- --output=$@.t `echo '$*' | sed 's,.*/,,'` ++ --output=$@.t \ ++ --no-discard-stderr `echo '$*' | sed 's,.*/,,'` + if sed $(remove_time_stamp) $@ >$@a.t 2>/dev/null && \ + sed $(remove_time_stamp) $@.t | cmp $@a.t - >/dev/null 2>&1; then \ + touch $@; \ diff --git a/patches/autoconf_host-2.69.local.patch b/patches/autoconf_host-2.69.local.patch new file mode 100644 index 00000000..339ca8d7 --- /dev/null +++ b/patches/autoconf_host-2.69.local.patch @@ -0,0 +1,24 @@ +--- autoconf-2.69/man/Makefile.am 2022-12-27 15:22:52.186142107 +0800 ++++ autoconf-2.69/man/Makefile.am.orig 2012-01-21 21:46:39.000000000 +0800 +@@ -58,7 +58,8 @@ + --include=$*.x \ + --include=$(srcdir)/common.x \ + --source='$(PACKAGE_STRING)' \ +- --output=$@.t `echo '$*' | sed 's,.*/,,'` ++ --output=$@.t \ ++ --no-discard-stderr `echo '$*' | sed 's,.*/,,'` + if sed $(remove_time_stamp) $@ >$@a.t 2>/dev/null && \ + sed $(remove_time_stamp) $@.t | cmp $@a.t - >/dev/null 2>&1; then \ + touch $@; \ +--- autoconf-2.69/man/Makefile.in 2022-12-27 15:23:19.743692892 +0800 ++++ autoconf-2.69/man/Makefile.in.orig 2012-04-25 10:40:26.000000000 +0800 +@@ -464,7 +464,8 @@ + --include=$*.x \ + --include=$(srcdir)/common.x \ + --source='$(PACKAGE_STRING)' \ +- --output=$@.t `echo '$*' | sed 's,.*/,,'` ++ --output=$@.t \ ++ --no-discard-stderr `echo '$*' | sed 's,.*/,,'` + if sed $(remove_time_stamp) $@ >$@a.t 2>/dev/null && \ + sed $(remove_time_stamp) $@.t | cmp $@a.t - >/dev/null 2>&1; then \ + touch $@; \ |