Title: [111175] trunk/Tools
Revision
111175
Author
[email protected]
Date
2012-03-19 07:35:02 -0700 (Mon, 19 Mar 2012)

Log Message

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: trunk/Tools/ChangeLog (111174 => 111175)


--- trunk/Tools/ChangeLog	2012-03-19 14:30:30 UTC (rev 111174)
+++ trunk/Tools/ChangeLog	2012-03-19 14:35:02 UTC (rev 111175)
@@ -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-19  Philippe Normand  <[email protected]>
 
         [GTK] Prefix run-launcher with run-with-jhbuild

Modified: trunk/Tools/jhbuild/jhbuild-wrapper (111174 => 111175)


--- trunk/Tools/jhbuild/jhbuild-wrapper	2012-03-19 14:30:30 UTC (rev 111174)
+++ trunk/Tools/jhbuild/jhbuild-wrapper	2012-03-19 14:35:02 UTC (rev 111175)
@@ -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