diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2014-08-02 06:38:49 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-06 10:02:39 +0100 |
commit | 1c44e057c66fe20d491fcb3ae45defe0a300b256 (patch) | |
tree | 3af5c858d57f113eeb8dcba92c4369fbd47ef65f /meta/recipes-support/nss-myhostname | |
parent | 77b4d82687e7d65e8c6619c36d337b1d5763fc36 (diff) | |
download | openembedded-core-1c44e057c66fe20d491fcb3ae45defe0a300b256.tar.gz openembedded-core-1c44e057c66fe20d491fcb3ae45defe0a300b256.tar.bz2 openembedded-core-1c44e057c66fe20d491fcb3ae45defe0a300b256.zip |
nss*: Replace hardcoded "/etc" with "${sysconfdir}"
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nss-myhostname')
-rw-r--r-- | meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb b/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb index 540f22330a..d8ec863954 100644 --- a/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb +++ b/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb @@ -16,11 +16,11 @@ inherit autotools pkg_postinst_${PN} () { sed -e '/^hosts:/s/\s*\<myhostname\>//' \ -e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \ - -i $D/etc/nsswitch.conf + -i ${D}${sysconfdir}/nsswitch.conf } pkg_prerm_${PN} () { sed -e '/^hosts:/s/\s*\<myhostname\>//' \ -e '/^hosts:/s/\s*myhostname//' \ - -i $D/etc/nsswitch.conf + -i ${D}${sysconfdir}/nsswitch.conf } |