diff options
author | 2013-03-13 11:03:12 +0000 | |
---|---|---|
committer | 2013-03-13 11:03:12 +0000 | |
commit | 396984c8dfa4ac0fde75412c40ee595dffa3842c (patch) | |
tree | 6e6b3a119b9e0d5aaf7711cad04ccecc56e0febf /eclass/fortran-2.eclass | |
parent | Version bump (diff) | |
download | historical-396984c8dfa4ac0fde75412c40ee595dffa3842c.tar.gz historical-396984c8dfa4ac0fde75412c40ee595dffa3842c.tar.bz2 historical-396984c8dfa4ac0fde75412c40ee595dffa3842c.zip |
Fix fortran-2.eclass for bash-3.2 compatibility, #461544
Diffstat (limited to 'eclass/fortran-2.eclass')
-rw-r--r-- | eclass/fortran-2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 93d9e2a3919b..7e63244951ee 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.16 2012/11/28 13:03:30 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.17 2013/03/13 11:03:12 jlec Exp $ # @ECLASS: fortran-2.eclass # @MAINTAINER: @@ -113,7 +113,7 @@ _fortran_compile_test() { [[ -f ${fcode} ]] || _fortran_write_testsuite - ${fcomp} "${fcode}" -o "${fcode}.x" &>> "${T}"/_fortran_compile_test.log + ${fcomp} "${fcode}" -o "${fcode}.x" >> "${T}"/_fortran_compile_test.log 2>&1 ret=$? rm -f "${fcode}.x" |