aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2017-02-08 10:39:50 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2017-02-13 18:43:32 +0100
commit338980d3718b318ee266c2522b6daa30bbe874eb (patch)
treeb1f02bd9eebe76df06d2ec037a625d2bccb058fb /meta-oe/recipes-support
parent2ef3979a41c77883525d9fb98ec774a9db1f736b (diff)
downloadmeta-openembedded-contrib-338980d3718b318ee266c2522b6daa30bbe874eb.tar.gz
procmail: avoid bashism in do_install
Found with verify-bashisms. Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r--meta-oe/recipes-support/procmail/procmail_3.22.bb3
1 files changed, 2 insertions, 1 deletions
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
}