All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] procmail: avoid bashism in do_install
@ 2017-02-08  9:39 Patrick Ohly
  0 siblings, 0 replies; only message in thread
From: Patrick Ohly @ 2017-02-08  9:39 UTC (permalink / raw)
  To: openembedded-devel

Found with verify-bashisms.

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
---
 meta-oe/recipes-support/procmail/procmail_3.22.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/procmail/procmail_3.22.bb b/meta-oe/recipes-support/procmail/procmail_3.22.bb
index 1063654..9bbd410 100644
--- a/meta-oe/recipes-support/procmail/procmail_3.22.bb
+++ b/meta-oe/recipes-support/procmail/procmail_3.22.bb
@@ -38,7 +38,8 @@ do_compile() {
 
 do_install() {
     install -d ${D}${bindir}
-    install -d ${D}${mandir}/man{1,5}
+    install -d ${D}${mandir}/man1
+    install -d ${D}${mandir}/man5
     oe_runmake -i BASENAME=${D}/usr MANDIR=${D}${mandir} install
     install -m 0644 debian/mailstat.1 ${D}${mandir}/man1
 }

base-commit: dd0494206e2ad08f5b9e969c94da66fd10c51e9c
-- 
git-series 0.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-08  9:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-08  9:39 [meta-oe][PATCH] procmail: avoid bashism in do_install Patrick Ohly

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.