1
0
Fork 0

fix detection of partial cmake configure

This commit is contained in:
Wilfried Goesgens 2017-04-06 15:32:23 +02:00
parent 267f0796d6
commit cdcff0c9f1
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ set +e
if test "${isCygwin}" == 0; then
test ! -f Makefile -o ! -f CMakeCache.txt
else
test ! -f ALL_BUILD.vcxproj ! -f CMakeCache.txt
test ! -f ALL_BUILD.vcxproj -o ! -f CMakeCache.txt
fi
PARTIAL_STATE=$?
set -e