← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~zorba-coders/zorba/fix-import-fots into lp:zorba

 

Chris Hillery has proposed merging lp:~zorba-coders/zorba/fix-import-fots into lp:zorba.

Commit message:
Fix erroneous ELSEIF() condition.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-import-fots/+merge/154533
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-import-fots/+merge/154533
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'test/fots/ImportFOTS.cmake'
--- test/fots/ImportFOTS.cmake	2013-03-20 07:23:34 +0000
+++ test/fots/ImportFOTS.cmake	2013-03-20 22:15:26 +0000
@@ -29,7 +29,7 @@
 SET (_outdir "${BUILDDIR}/test/fots")
 IF(EXISTS "${_outdir}/${FOTS_ARCHIVE}")
   MESSAGE (STATUS "FOTS archive '${FOTS_ARCHIVE}' already downloaded.")
-ELSEIF(EXISTS "${_outdir}/${FOTS_ARCHIVE}")
+ELSE(EXISTS "${_outdir}/${FOTS_ARCHIVE}")
   MESSAGE (STATUS "Downloading FOTS archive '${FOTS_ARCHIVE}'...")
   FILE (DOWNLOAD http://zorbatest.lambda.nu:8080/~spungi/${FOTS_ARCHIVE}
     "${_outdir}/${FOTS_ARCHIVE}" STATUS _dlstat SHOW_PROGRESS)


Follow ups