diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-13 00:22:46 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-13 00:22:46 +0000 |
commit | e1f7831a05b0fd19b5f7a7eb0a0e69ec018ec927 (patch) | |
tree | ebbd96a13b6655ad1aa1c388d33d70fa2db9f84a /app-admin/syslogread | |
parent | Add sys-apps/paludis-0.38.1. (diff) | |
download | gentoo-2-e1f7831a05b0fd19b5f7a7eb0a0e69ec018ec927.tar.gz gentoo-2-e1f7831a05b0fd19b5f7a7eb0a0e69ec018ec927.tar.bz2 gentoo-2-e1f7831a05b0fd19b5f7a7eb0a0e69ec018ec927.zip |
Replace the make call with emake -j1 and add a bug to track the issue.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/syslogread')
-rw-r--r-- | app-admin/syslogread/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/syslogread/syslogread-0.92.ebuild | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/app-admin/syslogread/ChangeLog b/app-admin/syslogread/ChangeLog index 4a2af9112339..05bf59370291 100644 --- a/app-admin/syslogread/ChangeLog +++ b/app-admin/syslogread/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/syslogread -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/syslogread/ChangeLog,v 1.4 2008/01/25 23:34:13 bangert Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/syslogread/ChangeLog,v 1.5 2009/07/13 00:22:46 flameeyes Exp $ + + 13 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org> + syslogread-0.92.ebuild: + Replace the make call with emake -j1 and add a bug to track the issue. 25 Jan 2008; Thilo Bangert <bangert@gentoo.org> syslogread-0.92.ebuild: honour ROOT diff --git a/app-admin/syslogread/syslogread-0.92.ebuild b/app-admin/syslogread/syslogread-0.92.ebuild index 6b1aa20048b5..f56ec09b62f0 100644 --- a/app-admin/syslogread/syslogread-0.92.ebuild +++ b/app-admin/syslogread/syslogread-0.92.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/syslogread/syslogread-0.92.ebuild,v 1.5 2008/01/25 23:34:13 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/syslogread/syslogread-0.92.ebuild,v 1.6 2009/07/13 00:22:46 flameeyes Exp $ inherit eutils toolchain-funcs @@ -29,7 +29,8 @@ src_compile() { echo "${D}/usr/share/man" > conf-man echo "$(tc-getCC) ${CFLAGS}" > conf-cc echo "$(tc-getCC) ${LDFLAGS}" > conf-ld - make || die #don't use emake b/c of jobserver + # See bug #277586 + emake -j1 || die } src_install() { |