From 5a7623c1774f8622d277e14e7b8c1b9edf70ec99 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 18 Nov 2019 00:52:51 +0000 Subject: [PATCH] lvm2: Use only a single sed' --- extra/lvm2/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/lvm2/build b/extra/lvm2/build index cde7ad57..939872f3 100755 --- a/extra/lvm2/build +++ b/extra/lvm2/build @@ -7,8 +7,8 @@ patch -p1 < disable-symver.patch # Busybox doesn't provide this command, however # all it does is split words one per line and # 'tr' can be used in its place. -sed -i'' 's/fmt -1/tr " " "\\n"/' make.tmpl.in -sed -i'' 's/fmt -1/tr " " "\\n"/' libdm/make.tmpl.in +sed -i'' 's/fmt -1/tr " " "\\n"/' \ + make.tmpl.in libdm/make.tmpl.in # The build fails when using busybox's 'mkdir'(?), # swap to using 'install -d' instead which works.