Fix typo that could clear EXTRALIB settings

This commit is contained in:
Martin Kroeker 2023-02-02 10:43:44 +01:00 committed by GitHub
parent 7e97dddbf9
commit afff3f5510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ if (${F_COMPILER} STREQUAL "GFORTRAN")
set(FCOMMON_OPT "${FCOMMON_OPT} -fno-optimize-sibling-calls")
#Don't include -lgfortran, when NO_LAPACK=1 or lsbcc
if (NOT NO_LAPACK)
set(EXTRALIB "{EXTRALIB} -lgfortran")
set(EXTRALIB "${EXTRALIB} -lgfortran")
endif ()
if (NO_BINARY_MODE)
if (MIPS64)