Title: [116872] releases/WebKitGTK/webkit-1.8/Tools
Revision
116872
Author
[email protected]
Date
2012-05-13 06:40:10 -0700 (Sun, 13 May 2012)

Log Message

Merge 111175 - jhbuild: Call jhbuild's autogen.sh via bash.
https://bugs.webkit.org/show_bug.cgi?id=81485

Reviewed by Philippe Normand.

jhbuild's autogen.sh uses "/bin/bash" in the shebang line, however
this is usually true only on Linux systems, and even then bash for
some reason might not be available in that location. It is safer to
call bash directly and pass autogen.sh to it instead.

* jhbuild/jhbuild-wrapper:
(install_jhbuild):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-1.8/Tools/ChangeLog (116871 => 116872)


--- releases/WebKitGTK/webkit-1.8/Tools/ChangeLog	2012-05-13 13:39:56 UTC (rev 116871)
+++ releases/WebKitGTK/webkit-1.8/Tools/ChangeLog	2012-05-13 13:40:10 UTC (rev 116872)
@@ -1,3 +1,18 @@
+2012-03-19  Raphael Kubo da Costa  <[email protected]>
+
+        jhbuild: Call jhbuild's autogen.sh via bash.
+        https://bugs.webkit.org/show_bug.cgi?id=81485
+
+        Reviewed by Philippe Normand.
+
+        jhbuild's autogen.sh uses "/bin/bash" in the shebang line, however
+        this is usually true only on Linux systems, and even then bash for
+        some reason might not be available in that location. It is safer to
+        call bash directly and pass autogen.sh to it instead.
+
+        * jhbuild/jhbuild-wrapper:
+        (install_jhbuild):
+
 2012-03-15  Dominik Röttsches  <[email protected]>
 
         Parametrize run-with-jhbuild and update-webkitgtk-libs with platform --gtk/--efl

Modified: releases/WebKitGTK/webkit-1.8/Tools/jhbuild/jhbuild-wrapper (116871 => 116872)


--- releases/WebKitGTK/webkit-1.8/Tools/jhbuild/jhbuild-wrapper	2012-05-13 13:39:56 UTC (rev 116871)
+++ releases/WebKitGTK/webkit-1.8/Tools/jhbuild/jhbuild-wrapper	2012-05-13 13:40:10 UTC (rev 116872)
@@ -91,7 +91,7 @@
     if 'MAKE' in env_without_make:
         del env_without_make['MAKE']
 
-    process = subprocess.Popen(['./autogen.sh', '--prefix=%s' % installation_prefix],
+    process = subprocess.Popen(['bash', './autogen.sh', '--prefix=%s' % installation_prefix],
                                cwd=jhbuild_source_path, env=env_without_make)
     process.wait()
     if process.returncode != 0:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to