From patchwork Tue Mar 6 17:24:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,5/5] dpkg: rename postinst trigger script Date: Tue, 06 Mar 2012 17:24:15 -0000 From: Otavio Salvador X-Patchwork-Id: 22823 Message-Id: <8f6df672e857885126380fdc6a176d41cbd7a83b.1331054558.git.otavio@ossystems.com.br> To: openembedded-core@lists.openembedded.org Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador --- meta/recipes-devtools/dpkg/dpkg.inc | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index 1326994..09bfbbc 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc @@ -2,7 +2,7 @@ DESCRIPTION = "Package maintenance system for Debian." LICENSE = "GPLv2.0+" SECTION = "base" -INC_PR = "r15" +INC_PR = "r16" SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.bz2 \ file://ignore_extra_fields.patch" @@ -42,9 +42,9 @@ do_install_prepend () { # this happens at S98 where our good 'ole packages script used to run printf "#!/bin/sh dpkg --configure -a -rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure -" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure - chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure +rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts +" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts + chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts } do_install_append () {