Skip to content

Commit

Permalink
2010-01-26 Paolo Bonzini <bonzini@gnu.org>
Browse files Browse the repository at this point in the history
	* configure.ac: Test for executability of _the first word_ of GFORTRAN.
	* configure: Regenerate.



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156264 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
bonzini committed Jan 26, 2010
1 parent ddcf38e commit a5e97ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions libgomp/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2010-01-26 Paolo Bonzini <bonzini@gnu.org>

* configure.ac: Test for executability of _the first word_ of GFORTRAN.
* configure: Regenerate.

2010-01-26 Jakub Jelinek <jakub@redhat.com>

PR fortran/42866
Expand Down
3 changes: 2 additions & 1 deletion libgomp/configure
Original file line number Diff line number Diff line change
Expand Up @@ -11459,7 +11459,8 @@ case `echo $GFORTRAN` in
-* | no* )
FC=no ;;
*)
if test -x "$GFORTRAN"; then
set dummy $GFORTRAN; ac_word=$2
if test -x "$ac_word"; then
FC="$GFORTRAN"
else
FC=no
Expand Down
3 changes: 2 additions & 1 deletion libgomp/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ case `echo $GFORTRAN` in
-* | no* )
FC=no ;;
*)
if test -x "$GFORTRAN"; then
set dummy $GFORTRAN; ac_word=$2
if test -x "$ac_word"; then
FC="$GFORTRAN"
else
FC=no
Expand Down

0 comments on commit a5e97ab

Please sign in to comment.