diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2009-03-21 14:58:19 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2009-03-21 14:58:19 +0000 |
commit | c6d896948f880b4fba332eca4e3723e55b4a3f09 (patch) | |
tree | f52c1139b693ee4c1cd684760d510e7e328ad341 /app-shells | |
parent | Remove old version (diff) | |
download | gentoo-2-c6d896948f880b4fba332eca4e3723e55b4a3f09.tar.gz gentoo-2-c6d896948f880b4fba332eca4e3723e55b4a3f09.tar.bz2 gentoo-2-c6d896948f880b4fba332eca4e3723e55b4a3f09.zip |
Avoid creating config.h twice; the second time can fail and is unnecessary
(Portage version: 2.2_rc26/cvs/Linux i686)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/pdksh/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r4.ebuild | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-shells/pdksh/ChangeLog b/app-shells/pdksh/ChangeLog index 5497c739828f..84b0fd06a5f2 100644 --- a/app-shells/pdksh/ChangeLog +++ b/app-shells/pdksh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/pdksh -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdksh/ChangeLog,v 1.22 2008/12/30 20:47:27 angelos Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdksh/ChangeLog,v 1.23 2009/03/21 14:58:19 truedfx Exp $ + + 21 Mar 2009; Harald van Dijk <truedfx@gentoo.org> pdksh-5.2.14-r4.ebuild: + Avoid creating config.h twice; the second time can fail and is unnecessary 30 Dec 2008; Christoph Mende <angelos@gentoo.org> pdksh-5.2.14-r4.ebuild: QA: Respect CC (bug 243704) diff --git a/app-shells/pdksh/pdksh-5.2.14-r4.ebuild b/app-shells/pdksh/pdksh-5.2.14-r4.ebuild index 62c2b79bc53a..39896f877dca 100644 --- a/app-shells/pdksh/pdksh-5.2.14-r4.ebuild +++ b/app-shells/pdksh/pdksh-5.2.14-r4.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-shells/pdksh/pdksh-5.2.14-r4.ebuild,v 1.27 2008/12/30 20:47:27 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdksh/pdksh-5.2.14-r4.ebuild,v 1.28 2009/03/21 14:58:19 truedfx Exp $ inherit eutils toolchain-funcs @@ -29,6 +29,7 @@ src_compile() { echo 'ksh_cv_dev_fd=${ksh_cv_dev_fd=yes}' > config.cache econf + date >stamp-h # don't create config.h a second time emake CC="$(tc-getCC)" CPP="$(tc-getCPP)" || die "emake failed" } |