|
From: <jsa...@us...> - 2008-11-03 11:28:11
|
Revision: 1268
http://como.svn.sourceforge.net/como/?rev=1268&view=rev
Author: jsanjuas
Date: 2008-11-03 11:28:06 +0000 (Mon, 03 Nov 2008)
Log Message:
-----------
build process does not fail if mono is not available
Modified Paths:
--------------
src/branches/2.0/modules/template-como_module.sh
Modified: src/branches/2.0/modules/template-como_module.sh
===================================================================
--- src/branches/2.0/modules/template-como_module.sh 2008-10-30 11:05:16 UTC (rev 1267)
+++ src/branches/2.0/modules/template-como_module.sh 2008-11-03 11:28:06 UTC (rev 1268)
@@ -70,7 +70,8 @@
echo "Entering build dir"
cd $FULL_BUILD_DIR
-cmake -D MODULE=$MODULE $FULL_MODULE_DIR
+cmake -D MODULE=$MODULE $FULL_MODULE_DIR || \
+ { echo Skipping $MODULE: build dependencies not met; exit; }
echo Building module
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|