aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2017-04-18 14:09:51 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-04-19 10:16:42 +0100
commit2b939cd143549a3a6fc640c7c512c4ac5c246bff (patch)
tree1124d023f89ba93b470182d5710ca5ebbab08c1c
parentb192daef5d1e7f3501c533b92dc75e2d996afc13 (diff)
downloadopenembedded-core-contrib-2b939cd143549a3a6fc640c7c512c4ac5c246bff.tar.gz
pixbufcache.bbclass: update postinst script name
The name of postinst scripts created by pixbufcache class contains "useradd" in it. Remove it to avoid confusion. As suggested by RP. Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r--meta/classes/pixbufcache.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/pixbufcache.bbclass b/meta/classes/pixbufcache.bbclass
index aa9815cc6f..b3e507f61b 100644
--- a/meta/classes/pixbufcache.bbclass
+++ b/meta/classes/pixbufcache.bbclass
@@ -57,7 +57,7 @@ SYSROOT_PREPROCESS_FUNCS_append_class-native = " pixbufcache_sstate_postinst"
# See base.bbclass for the other half of this
pixbufcache_sstate_postinst() {
mkdir -p ${SYSROOT_DESTDIR}${bindir}
- dest=${SYSROOT_DESTDIR}${bindir}/postinst-useradd-${PN}
+ dest=${SYSROOT_DESTDIR}${bindir}/postinst-${PN}
echo '#!/bin/sh' > $dest
echo "${gdkpixbuf_complete}" >> $dest
chmod 0755 $dest