From: Maxin B. John Date: Tue, 18 Apr 2017 11:09:51 +0000 (+0300) Subject: pixbufcache.bbclass: update postinst script name X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~21597 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b939cd143549a3a6fc640c7c512c4ac5c246bff;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Ross Burton --- diff --git a/meta/classes/pixbufcache.bbclass b/meta/classes/pixbufcache.bbclass index aa9815cc6fd..b3e507f61b6 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