Fixed some missing parentheses.

This commit is contained in:
Hank Anderson 2015-02-03 14:00:29 -06:00
parent e818ace11a
commit be1ce38f24
2 changed files with 6 additions and 6 deletions

View File

@ -90,13 +90,13 @@ if (${ARCH} STREQUAL "ia64")
if (${CMAKE_C_COMPILER} STREQUAL "GNU") if (${CMAKE_C_COMPILER} STREQUAL "GNU")
# EXPRECISION = 1 # EXPRECISION = 1
# CCOMMON_OPT += -DEXPRECISION # CCOMMON_OPT += -DEXPRECISION
endif endif ()
endif endif ()
endif endif ()
if (${ARCH} STREQUAL "mips64") if (${ARCH} STREQUAL "mips64")
set(NO_BINARY_MODE 1) set(NO_BINARY_MODE 1)
endif endif ()
if (${ARCH} STREQUAL "alpha") if (${ARCH} STREQUAL "alpha")
set(NO_BINARY_MODE 1) set(NO_BINARY_MODE 1)

View File

@ -73,7 +73,7 @@ endif ()
if (CYGWIN) if (CYGWIN)
set(NEED_PIC 0) set(NEED_PIC 0)
set(NO_EXPRECISION 1) set(NO_EXPRECISION 1)
endif endif ()
if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Windows" AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Interix") if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Windows" AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Interix")
if (SMP) if (SMP)
@ -98,5 +98,5 @@ endif ()
if (SANITY_CHECK) if (SANITY_CHECK)
# TODO: need some way to get $(*F) (target filename) # TODO: need some way to get $(*F) (target filename)
set(CCOMMON_OPT "${CCOMMON_OPT} -DSANITY_CHECK -DREFNAME=$(*F)f${BU}") set(CCOMMON_OPT "${CCOMMON_OPT} -DSANITY_CHECK -DREFNAME=$(*F)f${BU}")
endif endif ()