diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-08-02 22:05:50 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-08-02 22:05:50 +0000 |
commit | fba30e2f0c1241477637e6d87d4b82aaa51c6a7c (patch) | |
tree | 93de75b7c6a478b80a8d970f697019d1f69eaf9b | |
parent | removing pre14 from the tree; people are actively unmasking portage to get ac... (diff) | |
download | gentoo-2-fba30e2f0c1241477637e6d87d4b82aaa51c6a7c.tar.gz gentoo-2-fba30e2f0c1241477637e6d87d4b82aaa51c6a7c.tar.bz2 gentoo-2-fba30e2f0c1241477637e6d87d4b82aaa51c6a7c.zip |
check if is_koutput, bug #59159
-rw-r--r-- | app-misc/lirc/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/lirc/lirc-0.7.0_pre7.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-misc/lirc/ChangeLog b/app-misc/lirc/ChangeLog index 11d3bd4d8e8f..056723869553 100644 --- a/app-misc/lirc/ChangeLog +++ b/app-misc/lirc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/lirc # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/ChangeLog,v 1.33 2004/08/01 22:10:58 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/ChangeLog,v 1.34 2004/08/02 22:05:50 lanius Exp $ + + 03 Aug 2004; Heinrich Wendel <lanius@gentoo.org> lirc-0.7.0_pre7.ebuild: + check if is_koutput, bug #59159 02 Aug 2004; Heinrich Wendel <lanius@gentoo.org> lirc-0.7.0_pre7.ebuild: add lircmd init script, bug #17167 diff --git a/app-misc/lirc/lirc-0.7.0_pre7.ebuild b/app-misc/lirc/lirc-0.7.0_pre7.ebuild index 6d86305c4b65..3cabf112d923 100644 --- a/app-misc/lirc/lirc-0.7.0_pre7.ebuild +++ b/app-misc/lirc/lirc-0.7.0_pre7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/lirc-0.7.0_pre7.ebuild,v 1.2 2004/08/01 22:10:58 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/lirc-0.7.0_pre7.ebuild,v 1.3 2004/08/02 22:05:50 lanius Exp $ inherit eutils kmod @@ -64,7 +64,7 @@ src_compile() { [ "x${LIRC_OPTS}" = x ] && LIRC_OPTS="--with-driver=serial \ --with-port=0x3f8 --with-irq=4" - if is_kernel 2 6; then + if is_kernel 2 6 && ! is_koutput; then kmod_make_linux_writable fi |