summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/dpkg.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/dpkg/dpkg.inc')
-rw-r--r--meta/recipes-devtools/dpkg/dpkg.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc
index 35cd6e71b8..92a5adcdcd 100644
--- a/meta/recipes-devtools/dpkg/dpkg.inc
+++ b/meta/recipes-devtools/dpkg/dpkg.inc
@@ -62,14 +62,14 @@ do_install_append_class-native () {
62pkg_postinst_${PN} () { 62pkg_postinst_${PN} () {
63#!/bin/sh 63#!/bin/sh
64if [ "x$D" != "x" ] && [ -f $D/var/lib/dpkg/status ]; then 64if [ "x$D" != "x" ] && [ -f $D/var/lib/dpkg/status ]; then
65 install -d ${D}/${sysconfdir}/rcS.d 65 install -d $D${sysconfdir}/rcS.d
66 66
67 # this happens at S98 where our good 'ole packages script used to run 67 # this happens at S98 where our good 'ole packages script used to run
68 echo "#!/bin/sh 68 echo "#!/bin/sh
69dpkg --configure -a ${REDIRECT_CMD} 69dpkg --configure -a ${REDIRECT_CMD}
70rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 70rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
71" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 71" > $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
72 chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts 72 chmod 0755 $D${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts
73fi 73fi
74} 74}
75 75