diff options
author | Daniel Jacobowitz <dan@debian.org> | 2004-05-27 18:20:33 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@gcc.gnu.org> | 2004-05-27 18:20:33 +0000 |
commit | 30f1bddcb7217576c4b746ca0e84e50e3684cf78 (patch) | |
tree | a48b95975cf3aad41d67b78f81eeacc5c25d9242 /configure | |
parent | 8a36a0ccd84d73e8bfb5989be1510536b73b9df9 (diff) | |
download | gcc-30f1bddcb7217576c4b746ca0e84e50e3684cf78.tar.gz |
configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
* configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
* configure: Regenerate.
From-SVN: r82330
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 580c9165d90..765022877c3 100755 --- a/configure +++ b/configure @@ -3352,7 +3352,7 @@ elif test -d ${srcdir}/gcc; then elif test "$host" = "$target"; then GFORTRAN_FOR_TARGET='gfortran' else - GFORTRAN_FOR_TARGET=`echo gfortran | sed -e 's/x/x/' ${program_transform_name}` + GFORTRAN_FOR_TARGET=`echo gfortran | sed "${program_transform_name}"` fi case $GFORTRAN_FOR_TARGET in *' $(FLAGS_FOR_TARGET)') ;; |