thomasvs - in flumotion/trunk: . common
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Sun Feb 18 22:55:03 CET 2007
Author: thomasvs
Date: Sun Feb 18 22:54:52 2007
New Revision: 4491
Modified:
flumotion/trunk/ChangeLog
flumotion/trunk/common/pychecker.mk
Log:
* common/pychecker.mk:
Andy removed the configure-time GStreamer version checking,
so pychecker does not check 0.10 code anymore.
Since atm we always require 0.10, make this an always true statement
instead to get it checked.
Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog (original)
+++ flumotion/trunk/ChangeLog Sun Feb 18 22:54:52 2007
@@ -1,3 +1,11 @@
+2007-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * common/pychecker.mk:
+ Andy removed the configure-time GStreamer version checking,
+ so pychecker does not check 0.10 code anymore.
+ Since atm we always require 0.10, make this an always true statement
+ instead to get it checked.
+
2007-02-16 Michael Smith <msmith at fluendo.com>
* flumotion/component/bouncers/bouncer.py:
Modified: flumotion/trunk/common/pychecker.mk
==============================================================================
--- flumotion/trunk/common/pychecker.mk (original)
+++ flumotion/trunk/common/pychecker.mk Sun Feb 18 22:54:52 2007
@@ -38,7 +38,10 @@
pychecker_indep = PYTHONPATH=$(OUR_PATH):$$PYTHONPATH $(pychecker)
pychecker_010 = PYTHONPATH=$(OUR_PATH):$$PYTHONPATH FLU_GST_VERSION=0.10 $(pychecker)
-pychecker_if_010 = if test "x$(GST_010_SUPPORTED)" = "xyes"; then
+# We could check at runtime if 0.10 is supported, but since it always should
+# be at this point, we just let this be true always
+# pychecker_if_010 = if test "x$(GST_010_SUPPORTED)" = "xyes"; then
+pychecker_if_010 = if test "xyes" = "xyes"; then
pychecker_fi = else echo "passing, gstreamer version not supported"; fi
# we redirect stderr so we don't get messages like
More information about the flumotion-commit
mailing list