|
From: <ai...@us...> - 2010-09-12 18:52:25
|
Revision: 11173
http://plplot.svn.sourceforge.net/plplot/?rev=11173&view=rev
Author: airwin
Date: 2010-09-12 18:52:19 +0000 (Sun, 12 Sep 2010)
Log Message:
-----------
Bump allowed version of uncrustify from 0.55 to 0.56.
Modified Paths:
--------------
trunk/scripts/style_source.sh
Modified: trunk/scripts/style_source.sh
===================================================================
--- trunk/scripts/style_source.sh 2010-09-12 17:38:38 UTC (rev 11172)
+++ trunk/scripts/style_source.sh 2010-09-12 18:52:19 UTC (rev 11173)
@@ -82,11 +82,12 @@
shift
done
+allowed_version=0.56
version=`uncrustify --version`
-if [ "$version" != "uncrustify 0.55" ] ; then
+if [ "$version" != "uncrustify $allowed_version" ] ; then
echo "
Detected uncrustify version = '$version'.
-This script only works with uncrustify 0.55."
+This script only works with uncrustify $allowed_version."
exit 1
fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|