diff options
author | Nicholas Jones <carpaski@gentoo.org> | 2003-02-24 10:11:26 +0000 |
---|---|---|
committer | Nicholas Jones <carpaski@gentoo.org> | 2003-02-24 10:11:26 +0000 |
commit | dc1310d1404b4ff05a7a67ffa76ad6e3ab3acd92 (patch) | |
tree | 83a896f4de7b252792bf0be59165cd295077275d /sys-devel/m4/m4-1.4p.ebuild | |
parent | temporary homepage -- package is really dead, I think (diff) | |
download | gentoo-2-dc1310d1404b4ff05a7a67ffa76ad6e3ab3acd92.tar.gz gentoo-2-dc1310d1404b4ff05a7a67ffa76ad6e3ab3acd92.tar.bz2 gentoo-2-dc1310d1404b4ff05a7a67ffa76ad6e3ab3acd92.zip |
fix for bug 15673 -- /tmp/env file created in the ebuild.
Diffstat (limited to 'sys-devel/m4/m4-1.4p.ebuild')
-rw-r--r-- | sys-devel/m4/m4-1.4p.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys-devel/m4/m4-1.4p.ebuild b/sys-devel/m4/m4-1.4p.ebuild index 5be866a17adc..49849fa42129 100644 --- a/sys-devel/m4/m4-1.4p.ebuild +++ b/sys-devel/m4/m4-1.4p.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4p.ebuild,v 1.14 2003/02/13 16:33:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4p.ebuild,v 1.15 2003/02/24 10:11:26 carpaski Exp $ inherit gnuconfig @@ -23,6 +23,10 @@ RDEPEND="virtual/glibc" src_unpack() { unpack ${A} + + cp ${S}/tests/mkconfig.sh ${S}/tests/mkconfig.sh.orig + sed '2s:^:#:' < ${S}/tests/mkconfig.sh.orig > ${S}/tests/mkconfig.sh + use alpha && gnuconfig_update } @@ -58,5 +62,9 @@ src_install() { dodoc modules/README modules/TODO docinto html dohtml examples/WWW/*.htm + + # mkconfig.sh creates this file in other revisions... + # It shouldn't be there, so we delete it. + rm -f /tmp/env } |