From: Michael Krelin Date: Tue, 29 May 2007 09:06:02 +0000 (+0000) Subject: classes/qpf.bbclass: removed set -e from postinst/prerm scripts so that it doesn... X-Git-Tag: Release-2010-05/1~8868^2~400^2~161^2~2 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf36873df36aaef19f37b16a1786d8c060b26932;p=openembedded.git classes/qpf.bbclass: removed set -e from postinst/prerm scripts so that it doesn't fail on sourcing in /etc/profile. Closes #2388 --- 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 }