Skip to content

Commit

Permalink
* configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
Browse files Browse the repository at this point in the history
	* configure: Regenerate.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82330 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
drow committed May 27, 2004
1 parent 9756a60 commit 8e8b336
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-05-27 Daniel Jacobowitz <dan@debian.org>

* configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
* configure: Regenerate.

2004-05-25 Daniel Jacobowitz <drow@false.org>

* Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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)') ;;
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,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)') ;;
Expand Down

0 comments on commit 8e8b336

Please sign in to comment.