0

I try to compile an old program which has these lines in the configure file:

4143 if ac_fn_c_try_compile "$LINENO"; then :
4144  ac_cv_prog_hostcc_works=1  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4145 $as_echo "yes" >&6; }
     else
      as_fn_error $? "installation or configuration problem: host compiler $HOST_CC cannot create
      executables." "$LINENO" 5
     fi

This results in the following error:

./configure: line 4145: syntax error near unexpected token `}'
./configure: line 4145: `$as_echo "yes" >&6; }'

How can I fix this error?

Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178
Georg
  • 119
  • 1
  • 10

1 Answers1

0

I found there was a semicolon missing:

4144  ac_cv_prog_hostcc_works=1;  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Georg
  • 119
  • 1
  • 10