aboutsummaryrefslogtreecommitdiffstats
path: root/classes/qpf.bbclass
diff options
context:
space:
mode:
authorMichael Krelin <hacker@klever.net>2007-05-29 09:06:02 +0000
committerMichael Krelin <hacker@klever.net>2007-05-29 09:06:02 +0000
commitcf36873df36aaef19f37b16a1786d8c060b26932 (patch)
tree8ac598050c3e51dc3ac848809dcef22e797b26b0 /classes/qpf.bbclass
parent81cc4382a3bf649612302e67189118ebaa8ae810 (diff)
downloadopenembedded-cf36873df36aaef19f37b16a1786d8c060b26932.tar.gz
classes/qpf.bbclass: removed set -e from postinst/prerm scripts so that it doesn't fail on sourcing in /etc/profile. Closes #2388
Diffstat (limited to 'classes/qpf.bbclass')
-rw-r--r--classes/qpf.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/classes/qpf.bbclass b/classes/qpf.bbclass
index d6e58871d5..67761bd4be 100644
--- a/classes/qpf.bbclass
+++ b/classes/qpf.bbclass
@@ -9,15 +9,11 @@ do_compile() {
}
pkg_postinst_fonts() {
-#!/bin/sh
-set -e
. /etc/profile
${sbindir}/update-qtfontdir
}
pkg_postrm_fonts() {
-#!/bin/sh
-set -e
. /etc/profile
${sbindir}/update-qtfontdir -f
}