diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-05-25 09:35:04 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-05-25 09:35:04 +0000 |
commit | 975090cc60c75aa0926afcf5ae54e7e455968d48 (patch) | |
tree | 9a026cdcf16c0a6f34589e2566d6db9e0ae3d2e9 /kde-base | |
parent | Forgot to commit digest. (diff) | |
download | gentoo-2-975090cc60c75aa0926afcf5ae54e7e455968d48.tar.gz gentoo-2-975090cc60c75aa0926afcf5ae54e7e455968d48.tar.bz2 gentoo-2-975090cc60c75aa0926afcf5ae54e7e455968d48.zip |
fix in pkg_postinst: return true should be return 0, of course
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild b/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild index b4d240b7b674..a8151badd912 100644 --- a/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild +++ b/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild,v 1.5 2002/05/24 11:40:43 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild,v 1.6 2002/05/25 09:35:04 danarmak Exp $ inherit kde-dist @@ -60,6 +60,6 @@ pkg_postinst() { For further information see bug #2324 on bugs.gentoo.org and bug #39574 on bugs.kde.org. Meanwhile, you can use the alsa oss emulation." fi - return true + return 0 } |