Skip to content

Commit

Permalink
Correct type in configure.ac
Browse files Browse the repository at this point in the history
A variable name was not correct, leaving the value empty, causing issues.  The type has been corrected.
  • Loading branch information
underwoo committed May 28, 2020
1 parent d2ca9f0 commit 57cd1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ if `echo $FC_NOFLAGS | grep ^/ >/dev/null 2>&1`; then
else
FC_VERSION="$FC";
for x in `echo $PATH | sed -e 's/:/ /g'`; do
if test -x $x/$CF_NOFLAGS; then
if test -x $x/$FC_NOFLAGS; then
FC_VERSION="$x/$FC"
break
fi
Expand Down

0 comments on commit 57cd1aa

Please sign in to comment.