Changeset 112139 in webkit


Ignore:
Timestamp:
Mar 26, 2012 12:31:02 PM (12 years ago)
Author:
kubo@profusion.mobi
Message:

[jhbuild] Revert $MAKE environment hack introduced in r101929.
https://bugs.webkit.org/show_bug.cgi?id=82234

Reviewed by Martin Robinson.

The problem it was supposedly fixing was fixed in jhbuild itself
in git revision da8944d8ca987ca48c91b350257a530050406092, so we
can remove the workaround added to the script.

  • jhbuild/jhbuild-wrapper:

(install_jhbuild):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r112106 r112139  
     12012-03-26  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
     2
     3        [jhbuild] Revert $MAKE environment hack introduced in r101929.
     4        https://bugs.webkit.org/show_bug.cgi?id=82234
     5
     6        Reviewed by Martin Robinson.
     7
     8        The problem it was supposedly fixing was fixed in jhbuild itself
     9        in git revision da8944d8ca987ca48c91b350257a530050406092, so we
     10        can remove the workaround added to the script.
     11
     12        * jhbuild/jhbuild-wrapper:
     13        (install_jhbuild):
     14
    1152012-03-26  Leo Yang  <leo.yang@torchmobile.com.cn>
    216
  • trunk/Tools/jhbuild/jhbuild-wrapper

    r111929 r112139  
    8686
    8787def install_jhbuild():
    88     # jhbuild is really unhappy about having MAKE defined to something like 'make -j4'
    89     # so we just undefine it here.
    90     env_without_make = dict(os.environ)
    91     if 'MAKE' in env_without_make:
    92         del env_without_make['MAKE']
    93 
    94     process = subprocess.Popen(['bash', './autogen.sh', '--prefix=%s' % installation_prefix],
    95                                cwd=jhbuild_source_path, env=env_without_make)
     88    process = subprocess.Popen(['bash', './autogen.sh', '--prefix=%s' % installation_prefix], cwd=jhbuild_source_path)
    9689    process.wait()
    9790    if process.returncode != 0:
    9891        raise Exception('jhbuild configure failed with return code: %i' % process.returncode)
    9992
    100     process = subprocess.Popen(['make', 'install'], cwd=jhbuild_source_path, env=env_without_make)
     93    process = subprocess.Popen(['make', 'install'], cwd=jhbuild_source_path)
    10194    process.wait()
    10295    if process.returncode != 0:
Note: See TracChangeset for help on using the changeset viewer.