diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-06-18 11:02:34 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-06-18 11:03:20 +0200 |
commit | 708fc54cc41e78710557966a421eb734d07b3e64 (patch) | |
tree | 4eed1cde9bf81d7f6620b68cf2bf83d6f8c47fbd /sys-fs/lvm2/files | |
parent | sys-fs/lvm2: Bumped ebuild to EAPI-7 (diff) | |
download | gentoo-708fc54cc41e78710557966a421eb734d07b3e64.tar.gz gentoo-708fc54cc41e78710557966a421eb734d07b3e64.tar.bz2 gentoo-708fc54cc41e78710557966a421eb734d07b3e64.zip |
sys-fs/lvm2: Fixed build with app-shells/mksh
Thanks-to: Alexander Tsoy <alexander@tsoy.me>
Closes: https://bugs.gentoo.org/686652
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-fs/lvm2/files')
-rw-r--r-- | sys-fs/lvm2/files/lvm2-2.02.184-mksh_build.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys-fs/lvm2/files/lvm2-2.02.184-mksh_build.patch b/sys-fs/lvm2/files/lvm2-2.02.184-mksh_build.patch new file mode 100644 index 000000000000..49c6853f23a7 --- /dev/null +++ b/sys-fs/lvm2/files/lvm2-2.02.184-mksh_build.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/686652 + +--- LVM2.2.02.184/tools/Makefile.in ++++ LVM2.2.02.184/tools/Makefile.in +@@ -220,6 +220,6 @@ + echo "/* Do not edit. This file is generated by the Makefile. */" && \ + echo -en "const char _command_input[] =\n\n\"" && \ + $(EGREP) -v '^#|\-\-\-|^$$' $(srcdir)/command-lines.in | $(AWK) 'BEGIN {ORS = "\\n\"\n\""} //' && \ +- echo "\\n\";" \ ++ printf "%s\n" "\\n\";" \ + ) > $@ + + $(SOURCES:%.c=%.d) $(SOURCES2:%.c=%.d): command-lines-input.h command-count.h cmds.h |