diff options
author | Maxin B. John <maxin.john@intel.com> | 2017-04-18 14:09:51 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-19 10:18:43 +0100 |
commit | 4c6d7a20bcdc5cbe0d50ccb6fb4848631407e257 (patch) | |
tree | fe521ffcd90f9e0d478956662aec9ab5b38b5742 /meta/classes | |
parent | 7fe30a5df4ad25275492f241a69553693af1fd3f (diff) | |
download | poky-4c6d7a20bcdc5cbe0d50ccb6fb4848631407e257.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.
(From OE-Core rev: 2b939cd143549a3a6fc640c7c512c4ac5c246bff)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/pixbufcache.bbclass | 2 |
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" | |||
57 | # See base.bbclass for the other half of this | 57 | # See base.bbclass for the other half of this |
58 | pixbufcache_sstate_postinst() { | 58 | pixbufcache_sstate_postinst() { |
59 | mkdir -p ${SYSROOT_DESTDIR}${bindir} | 59 | mkdir -p ${SYSROOT_DESTDIR}${bindir} |
60 | dest=${SYSROOT_DESTDIR}${bindir}/postinst-useradd-${PN} | 60 | dest=${SYSROOT_DESTDIR}${bindir}/postinst-${PN} |
61 | echo '#!/bin/sh' > $dest | 61 | echo '#!/bin/sh' > $dest |
62 | echo "${gdkpixbuf_complete}" >> $dest | 62 | echo "${gdkpixbuf_complete}" >> $dest |
63 | chmod 0755 $dest | 63 | chmod 0755 $dest |