diff options
| author | Patrick Ohly <patrick.ohly@intel.com> | 2017-02-08 10:39:50 +0100 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-02-13 18:43:32 +0100 |
| commit | 338980d3718b318ee266c2522b6daa30bbe874eb (patch) | |
| tree | b1f02bd9eebe76df06d2ec037a625d2bccb058fb | |
| parent | 2ef3979a41c77883525d9fb98ec774a9db1f736b (diff) | |
| download | meta-openembedded-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>
| -rw-r--r-- | meta-oe/recipes-support/procmail/procmail_3.22.bb | 3 |
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() { | |||
| 38 | 38 | ||
| 39 | do_install() { | 39 | do_install() { |
| 40 | install -d ${D}${bindir} | 40 | install -d ${D}${bindir} |
| 41 | install -d ${D}${mandir}/man{1,5} | 41 | install -d ${D}${mandir}/man1 |
| 42 | install -d ${D}${mandir}/man5 | ||
| 42 | oe_runmake -i BASENAME=${D}/usr MANDIR=${D}${mandir} install | 43 | oe_runmake -i BASENAME=${D}/usr MANDIR=${D}${mandir} install |
| 43 | install -m 0644 debian/mailstat.1 ${D}${mandir}/man1 | 44 | install -m 0644 debian/mailstat.1 ${D}${mandir}/man1 |
| 44 | } | 45 | } |
