diff options
author | Fabian Groffen <grobian@gentoo.org> | 2007-08-19 18:15:04 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2007-08-19 18:15:04 +0000 |
commit | 92f2bf1f32c57a1718e784ea741102941565f49f (patch) | |
tree | bd7c4f9982cfff7258c268fbb958981c31c68a49 /eclass | |
parent | amd64 stable, bug #187681. (diff) | |
download | historical-92f2bf1f32c57a1718e784ea741102941565f49f.tar.gz historical-92f2bf1f32c57a1718e784ea741102941565f49f.tar.bz2 historical-92f2bf1f32c57a1718e784ea741102941565f49f.zip |
Echo "done", don't run "done".
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnustep-base.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass index cb35be082af1..1bf0e1fc1b31 100644 --- a/eclass/gnustep-base.eclass +++ b/eclass/gnustep-base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.1 2007/08/18 13:12:57 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.2 2007/08/19 18:15:04 grobian Exp $ inherit eutils flag-o-matic @@ -173,7 +173,7 @@ egnustep_install_config() { while read line ; do echo "${line}" >> "${T}"/${cfile} done - echo "done" >> "${T}"/${cfile} + echo 'echo "done"' >> "${T}"/${cfile} exeinto ${GNUSTEP_SYSTEM_TOOLS}/Gentoo doexe "${T}"/${cfile} |