[pitivi] pitivi-git-environment: Add more workarounds to prevent blocking builds



commit d09e96efde6b336d3522f7e613bd65de72cf22f2
Author: Jean-François Fortin Tam <nekohayo gmail com>
Date:   Tue Aug 6 17:58:08 2013 +0200

    pitivi-git-environment: Add more workarounds to prevent blocking builds
    
    These are only temporary workarounds. GStreamer folks don't seem to be
    in a hurry to fix those minor issues and life is too short to keep wasting time
    manually resetting my checkouts to prevent the build script from failing.

 bin/pitivi-git-environment.sh |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)
---
diff --git a/bin/pitivi-git-environment.sh b/bin/pitivi-git-environment.sh
index bf89e60..43f3389 100755
--- a/bin/pitivi-git-environment.sh
+++ b/bin/pitivi-git-environment.sh
@@ -335,6 +335,17 @@ if [ "$ready_to_run" != "1" ]; then
         if [ $m == "gstreamer" ] || [ $m == "gst-plugins-base" ]; then
             git checkout -- po
         fi
+        # Another similar hack because gst-plugins-bad keeps changing
+        # common/ and win32/common/:
+        if [ $m == "gst-plugins-bad" ]; then
+            git checkout -- common
+            git checkout -- win32
+        fi
+        # Yep, another temporary workaround:
+        if [ $m == "gst-editing-services" ]; then
+            git checkout -- acinclude.m4
+        fi
+
         if [ $GST_RELEASE_TAG == "master" ]; then
             git pull --rebase
             if [ $? -ne 0 ]; then


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]