diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-08 18:00:55 +0100 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2015-07-15 09:10:25 -0400 |
commit | 66ba2ede1420dc8ab305da5b19772ffb499b9c97 (patch) | |
tree | c3f46b8510377172ab7679a368e6a123f0bd4d48 /meta-networking | |
parent | 8621b51850332e5a7f3a05431e1f1c2aab6d6787 (diff) | |
download | meta-openembedded-66ba2ede1420dc8ab305da5b19772ffb499b9c97.tar.gz |
postfix: Add explict getVar expansion parameter
Bitbake is likely to require this parameter in future, add
the default value.
Patch generated with the command:
sed -e 's:\(getVar([^,()]*\)\s*):\1, False):g' -i `grep -ril getVar *`
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-daemons/postfix/postfix.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/postfix/postfix.inc b/meta-networking/recipes-daemons/postfix/postfix.inc index fa75a78ba..cd768ccb2 100644 --- a/meta-networking/recipes-daemons/postfix/postfix.inc +++ b/meta-networking/recipes-daemons/postfix/postfix.inc | |||
@@ -232,7 +232,7 @@ pkg_postinst_${PN} () { | |||
232 | touch $D/etc/postfix/virtual_alias | 232 | touch $D/etc/postfix/virtual_alias |
233 | postmap -c $D/etc/postfix $D/etc/postfix/virtual_alias | 233 | postmap -c $D/etc/postfix $D/etc/postfix/virtual_alias |
234 | 234 | ||
235 | if ${@'true' if 'linuxstdbase' in d.getVar('DISTROOVERRIDES') else 'false'}; then | 235 | if ${@'true' if 'linuxstdbase' in d.getVar('DISTROOVERRIDES', False) else 'false'}; then |
236 | # /usr/lib/sendmial is required by LSB core test | 236 | # /usr/lib/sendmial is required by LSB core test |
237 | [ ! -L $D/usr/lib/sendmail ] && ln -sf ${sbindir}/sendmail $D/usr/lib/ | 237 | [ ! -L $D/usr/lib/sendmail ] && ln -sf ${sbindir}/sendmail $D/usr/lib/ |
238 | fi | 238 | fi |