From 338980d3718b318ee266c2522b6daa30bbe874eb Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 8 Feb 2017 10:39:50 +0100 Subject: procmail: avoid bashism in do_install Found with verify-bashisms. Signed-off-by: Patrick Ohly Signed-off-by: Martin Jansa --- meta-oe/recipes-support/procmail/procmail_3.22.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta-oe/recipes-support/procmail') diff --git a/meta-oe/recipes-support/procmail/procmail_3.22.bb b/meta-oe/recipes-support/procmail/procmail_3.22.bb index 1063654f5c..9bbd4103cf 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 } -- cgit 1.2.3-korg