diff options
author | Michael Krelin <hacker@klever.net> | 2007-05-29 09:06:02 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-05-29 09:06:02 +0000 |
commit | cf36873df36aaef19f37b16a1786d8c060b26932 (patch) | |
tree | 8ac598050c3e51dc3ac848809dcef22e797b26b0 /classes/qpf.bbclass | |
parent | 81cc4382a3bf649612302e67189118ebaa8ae810 (diff) |
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.bbclass | 4 |
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 } |