From: Roland Schulz Date: Sat, 28 Jun 2014 04:58:55 +0000 (-0400) Subject: Fix error for no 64bit file support X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=cb3f3130939e7a14593edb4dd803e00b02a5fd5c;p=alexxy%2Fgromacs.git Fix error for no 64bit file support Because the cache was set the error wasn't shown after rerunning cmake. Change-Id: I9def74eaecd02d2f2bfc6c40b7954404e2890717 --- diff --git a/cmake/gmxTestLargeFiles.cmake b/cmake/gmxTestLargeFiles.cmake index 6753022e28..0fe6675143 100644 --- a/cmake/gmxTestLargeFiles.cmake +++ b/cmake/gmxTestLargeFiles.cmake @@ -149,7 +149,6 @@ MACRO(GMX_TEST_LARGE_FILES VARIABLE) if(SIZEOF_LONG_INT EQUAL 8) #standard fseek is OK for 64bit SET(${VARIABLE} 1 CACHE INTERNAL "Result of test for large file support" FORCE) else() - SET(${VARIABLE} 0 CACHE INTERNAL "Result of test for large file support" FORCE) MESSAGE(FATAL_ERROR "Checking for 64bit file support failed.") endif() endif()