diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-07-31 19:54:33 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-07-31 19:54:33 +0000 |
commit | 7e59ad4b8e773b4905cf84027150a87b2829a1af (patch) | |
tree | 12f0b3b597f82cdd11370eada97753720e59aebf /eclass | |
parent | Avoid trying to use the random data directories that might be scattered about... (diff) | |
download | gentoo-2-7e59ad4b8e773b4905cf84027150a87b2829a1af.tar.gz gentoo-2-7e59ad4b8e773b4905cf84027150a87b2829a1af.tar.bz2 gentoo-2-7e59ad4b8e773b4905cf84027150a87b2829a1af.zip |
Replace touch with bash redirection, so that it doesn't depend on coreutils. It doesn't have to.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 1793ff247f75..617c7c83af26 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.78 2008/07/31 19:13:57 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.79 2008/07/31 19:54:33 drac Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -83,7 +83,7 @@ eautoreconf() { local pwd=$(pwd) x auxdir [[ -f .eautoreconfd ]] && einfo "eautoreconf already ran, skipping" && return 0 - touch .eautoreconfd + >> .eautoreconfd if [[ -z ${AT_NO_RECURSIVE} ]]; then # Take care of subdirs |