Files
haikuports/dev-lang/v8/patches/gyp-r1501.patch

2461 lines
122 KiB
Diff

diff -Naur gyp/buildbot/buildbot_run.py gyp-haiku/buildbot/buildbot_run.py
--- gyp/buildbot/buildbot_run.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/buildbot/buildbot_run.py 2012-12-24 00:12:54.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/gyp gyp-haiku/gyp
--- gyp/gyp 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/gyp 2012-12-24 00:03:19.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/gyptest.py gyp-haiku/gyptest.py
--- gyp/gyptest.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/gyptest.py 2012-12-24 00:06:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
@@ -217,6 +217,7 @@
'linux2': ['make', 'ninja'],
'linux3': ['make', 'ninja'],
'darwin': ['make', 'ninja', 'xcode'],
+ 'haiku1': ['make'],
}[sys.platform]
for format in format_list:
diff -Naur gyp/pylib/gyp/__init__.py gyp-haiku/pylib/gyp/__init__.py
--- gyp/pylib/gyp/__init__.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/__init__.py 2012-12-24 00:12:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/common_test.py gyp-haiku/pylib/gyp/common_test.py
--- gyp/pylib/gyp/common_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/common_test.py 2012-12-24 00:12:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/common.py gyp-haiku/pylib/gyp/common.py
--- gyp/pylib/gyp/common.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/common.py 2012-12-24 00:03:19.000000000 +0000
@@ -378,14 +378,16 @@
return 'solaris'
if sys.platform.startswith('freebsd'):
return 'freebsd'
+ if sys.platform.startswith('haiku'):
+ return 'haiku'
return 'linux'
def CopyTool(flavor, out_path):
- """Finds (mac|sun|win)_tool.gyp in the gyp directory and copies it
+ """Finds (mac|sun|win|haiku)_tool.gyp in the gyp directory and copies it
to |out_path|."""
- prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win' }.get(flavor, None)
+ prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win', 'haiku': 'haiku' }.get(flavor, None)
if not prefix:
return
diff -Naur gyp/pylib/gyp/easy_xml_test.py gyp-haiku/pylib/gyp/easy_xml_test.py
--- gyp/pylib/gyp/easy_xml_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/easy_xml_test.py 2012-12-24 00:12:18.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/generator/make.py gyp-haiku/pylib/gyp/generator/make.py
--- gyp/pylib/gyp/generator/make.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/generator/make.py 2012-12-24 00:03:19.000000000 +0000
@@ -491,6 +491,13 @@
cmd_sun_tool = ./gyp-sun-tool $(4) $< "$@"
"""
+SHARED_HEADER_HAIKU_COMMANDS = """
+# gyp-haiku-tool is written next to the root Makefile by gyp.
+# Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
+# already.
+quiet_cmd_haiku_tool = HAIKUTOOL $(4) $<
+cmd_haiku_tool = ./gyp-haiku-tool $(4) $< "$@"
+"""
def WriteRootHeaderSuffixRules(writer):
extensions = sorted(COMPILABLE_EXTENSIONS.keys(), key=str.lower)
@@ -2027,6 +2034,13 @@
header_params.update({
'flock': 'lockf',
})
+ elif flavor == 'haiku':
+ header_params.update({
+ 'flock': './gyp-haiku-tool flock',
+ 'flock_index': 2,
+ 'extra_commands': SHARED_HEADER_HAIKU_COMMANDS,
+ })
+
header_params.update(RunSystemTests(flavor))
header_params.update({
diff -Naur gyp/pylib/gyp/generator/msvs_test.py gyp-haiku/pylib/gyp/generator/msvs_test.py
--- gyp/pylib/gyp/generator/msvs_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/generator/msvs_test.py 2012-12-24 00:12:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/generator/ninja_test.py gyp-haiku/pylib/gyp/generator/ninja_test.py
--- gyp/pylib/gyp/generator/ninja_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/generator/ninja_test.py 2012-12-24 00:11:52.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/haiku_tool.py gyp-haiku/pylib/gyp/haiku_tool.py
--- gyp/pylib/gyp/haiku_tool.py 1970-01-01 00:00:00.000000000 +0000
+++ gyp-haiku/pylib/gyp/haiku_tool.py 2012-12-24 00:03:19.000000000 +0000
@@ -0,0 +1,49 @@
+#!/boot/common/bin/python
+# Copyright (c) 2011 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""These functions are executed via gyp-haiku-tool when using the Makefile
+generator."""
+
+import fcntl
+import os
+import struct
+import subprocess
+import sys
+
+
+def main(args):
+ executor = HaikuTool()
+ executor.Dispatch(args)
+
+
+class HaikuTool(object):
+ """This class performs all the Haiku tooling steps. The methods can either be
+ executed directly, or dispatched from an argument list."""
+
+ def Dispatch(self, args):
+ """Dispatches a string command to a method."""
+ if len(args) < 1:
+ raise Exception("Not enough arguments")
+
+ method = "Exec%s" % self._CommandifyName(args[0])
+ getattr(self, method)(*args[1:])
+
+ def _CommandifyName(self, name_string):
+ """Transforms a tool name like copy-info-plist to CopyInfoPlist"""
+ return name_string.title().replace('-', '')
+
+ def ExecFlock(self, lockfile, *cmd_list):
+ """Emulates the most basic behavior of Linux's flock(1)."""
+ # Rely on exception handling to report errors.
+ fd = os.open(lockfile, os.O_RDONLY|os.O_NOCTTY|os.O_CREAT, 0o666)
+ fcntl.flock(fd, fcntl.LOCK_EX)
+ ret = subprocess.call(cmd_list)
+ # Haiki bug -- lock is not released on file close?
+ fcntl.flock(fd, fcntl.LOCK_UN)
+ return ret
+
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv[1:]))
diff -Naur gyp/pylib/gyp/mac_tool.py gyp-haiku/pylib/gyp/mac_tool.py
--- gyp/pylib/gyp/mac_tool.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/mac_tool.py 2012-12-24 00:12:33.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/pylib/gyp/MSVSSettings_test.py gyp-haiku/pylib/gyp/MSVSSettings_test.py
--- gyp/pylib/gyp/MSVSSettings_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/MSVSSettings_test.py 2012-12-24 00:05:51.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/sun_tool.py gyp-haiku/pylib/gyp/sun_tool.py
--- gyp/pylib/gyp/sun_tool.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/sun_tool.py 2012-12-24 00:12:38.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/pylib/gyp/system_test.py gyp-haiku/pylib/gyp/system_test.py
--- gyp/pylib/gyp/system_test.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/system_test.py 2012-12-24 00:13:00.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/pylib/gyp/win_tool.py gyp-haiku/pylib/gyp/win_tool.py
--- gyp/pylib/gyp/win_tool.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/pylib/gyp/win_tool.py 2012-12-24 00:12:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/setup.py gyp-haiku/setup.py
--- gyp/setup.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/setup.py 2012-12-24 00:13:07.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/gyptest-all.py gyp-haiku/test/actions/gyptest-all.py
--- gyp/test/actions/gyptest-all.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/gyptest-all.py 2012-12-24 00:13:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/gyptest-default.py gyp-haiku/test/actions/gyptest-default.py
--- gyp/test/actions/gyptest-default.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/gyptest-default.py 2012-12-24 00:13:19.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/gyptest-errors.py gyp-haiku/test/actions/gyptest-errors.py
--- gyp/test/actions/gyptest-errors.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/gyptest-errors.py 2012-12-24 00:13:24.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/confirm-dep-files.py gyp-haiku/test/actions/src/confirm-dep-files.py
--- gyp/test/actions/src/confirm-dep-files.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/confirm-dep-files.py 2012-12-24 00:13:28.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/subdir1/counter.py gyp-haiku/test/actions/src/subdir1/counter.py
--- gyp/test/actions/src/subdir1/counter.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/subdir1/counter.py 2012-12-24 00:13:33.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/subdir1/make-prog1.py gyp-haiku/test/actions/src/subdir1/make-prog1.py
--- gyp/test/actions/src/subdir1/make-prog1.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/subdir1/make-prog1.py 2012-12-24 00:13:38.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/subdir1/make-prog2.py gyp-haiku/test/actions/src/subdir1/make-prog2.py
--- gyp/test/actions/src/subdir1/make-prog2.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/subdir1/make-prog2.py 2012-12-24 00:13:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/subdir2/make-file.py gyp-haiku/test/actions/src/subdir2/make-file.py
--- gyp/test/actions/src/subdir2/make-file.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/subdir2/make-file.py 2012-12-24 00:14:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions/src/subdir3/generate_main.py gyp-haiku/test/actions/src/subdir3/generate_main.py
--- gyp/test/actions/src/subdir3/generate_main.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/actions/src/subdir3/generate_main.py 2012-12-24 00:14:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-bare/gyptest-bare.py gyp-haiku/test/actions-bare/gyptest-bare.py
--- gyp/test/actions-bare/gyptest-bare.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/actions-bare/gyptest-bare.py 2012-12-24 00:14:10.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-bare/src/bare.py gyp-haiku/test/actions-bare/src/bare.py
--- gyp/test/actions-bare/src/bare.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/actions-bare/src/bare.py 2012-12-24 00:14:17.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-multiple/gyptest-all.py gyp-haiku/test/actions-multiple/gyptest-all.py
--- gyp/test/actions-multiple/gyptest-all.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/actions-multiple/gyptest-all.py 2012-12-24 00:14:22.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-multiple/src/copy.py gyp-haiku/test/actions-multiple/src/copy.py
--- gyp/test/actions-multiple/src/copy.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/actions-multiple/src/copy.py 2012-12-24 00:14:27.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/actions-multiple/src/filter.py gyp-haiku/test/actions-multiple/src/filter.py
--- gyp/test/actions-multiple/src/filter.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/actions-multiple/src/filter.py 2012-12-24 00:14:33.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/actions-none/gyptest-none.py gyp-haiku/test/actions-none/gyptest-none.py
--- gyp/test/actions-none/gyptest-none.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/actions-none/gyptest-none.py 2012-12-24 00:14:38.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-subdir/gyptest-action.py gyp-haiku/test/actions-subdir/gyptest-action.py
--- gyp/test/actions-subdir/gyptest-action.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/test/actions-subdir/gyptest-action.py 2012-12-24 00:14:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-subdir/src/make-file.py gyp-haiku/test/actions-subdir/src/make-file.py
--- gyp/test/actions-subdir/src/make-file.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/test/actions-subdir/src/make-file.py 2012-12-24 00:14:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/actions-subdir/src/subdir/make-subdir-file.py gyp-haiku/test/actions-subdir/src/subdir/make-subdir-file.py
--- gyp/test/actions-subdir/src/subdir/make-subdir-file.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/test/actions-subdir/src/subdir/make-subdir-file.py 2012-12-24 00:15:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/additional-targets/gyptest-additional.py gyp-haiku/test/additional-targets/gyptest-additional.py
--- gyp/test/additional-targets/gyptest-additional.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/additional-targets/gyptest-additional.py 2012-12-24 00:15:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/additional-targets/src/dir1/emit.py gyp-haiku/test/additional-targets/src/dir1/emit.py
--- gyp/test/additional-targets/src/dir1/emit.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/additional-targets/src/dir1/emit.py 2012-12-24 00:15:16.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/assembly/gyptest-assembly.py gyp-haiku/test/assembly/gyptest-assembly.py
--- gyp/test/assembly/gyptest-assembly.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/assembly/gyptest-assembly.py 2012-12-24 00:15:21.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/build-option/gyptest-build.py gyp-haiku/test/build-option/gyptest-build.py
--- gyp/test/build-option/gyptest-build.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/build-option/gyptest-build.py 2012-12-24 00:15:25.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/builddir/gyptest-all.py gyp-haiku/test/builddir/gyptest-all.py
--- gyp/test/builddir/gyptest-all.py 2012-12-24 00:53:38.000000000 +0000
+++ gyp-haiku/test/builddir/gyptest-all.py 2012-12-24 00:15:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/builddir/gyptest-default.py gyp-haiku/test/builddir/gyptest-default.py
--- gyp/test/builddir/gyptest-default.py 2012-12-24 00:53:38.000000000 +0000
+++ gyp-haiku/test/builddir/gyptest-default.py 2012-12-24 00:15:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/cflags/gyptest-cflags.py gyp-haiku/test/cflags/gyptest-cflags.py
--- gyp/test/cflags/gyptest-cflags.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/cflags/gyptest-cflags.py 2012-12-24 00:15:40.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/compilable/gyptest-headers.py gyp-haiku/test/compilable/gyptest-headers.py
--- gyp/test/compilable/gyptest-headers.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/compilable/gyptest-headers.py 2012-12-24 00:15:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/compiler-override/gyptest-compiler-env.py gyp-haiku/test/compiler-override/gyptest-compiler-env.py
--- gyp/test/compiler-override/gyptest-compiler-env.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/compiler-override/gyptest-compiler-env.py 2012-12-24 00:15:51.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/compiler-override/gyptest-compiler-global-settings.py gyp-haiku/test/compiler-override/gyptest-compiler-global-settings.py
--- gyp/test/compiler-override/gyptest-compiler-global-settings.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/compiler-override/gyptest-compiler-global-settings.py 2012-12-24 00:16:13.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/compiler-override/my_cc.py gyp-haiku/test/compiler-override/my_cc.py
--- gyp/test/compiler-override/my_cc.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/compiler-override/my_cc.py 2012-12-24 00:16:19.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/compiler-override/my_cxx.py gyp-haiku/test/compiler-override/my_cxx.py
--- gyp/test/compiler-override/my_cxx.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/compiler-override/my_cxx.py 2012-12-24 00:16:25.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/compiler-override/my_ld.py gyp-haiku/test/compiler-override/my_ld.py
--- gyp/test/compiler-override/my_ld.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/compiler-override/my_ld.py 2012-12-24 00:16:30.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/configurations/basics/gyptest-configurations.py gyp-haiku/test/configurations/basics/gyptest-configurations.py
--- gyp/test/configurations/basics/gyptest-configurations.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/configurations/basics/gyptest-configurations.py 2012-12-24 00:16:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/configurations/inheritance/gyptest-inheritance.py gyp-haiku/test/configurations/inheritance/gyptest-inheritance.py
--- gyp/test/configurations/inheritance/gyptest-inheritance.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/configurations/inheritance/gyptest-inheritance.py 2012-12-24 00:16:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/configurations/invalid/gyptest-configurations.py gyp-haiku/test/configurations/invalid/gyptest-configurations.py
--- gyp/test/configurations/invalid/gyptest-configurations.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/configurations/invalid/gyptest-configurations.py 2012-12-24 00:16:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/configurations/target_platform/gyptest-target_platform.py gyp-haiku/test/configurations/target_platform/gyptest-target_platform.py
--- gyp/test/configurations/target_platform/gyptest-target_platform.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/configurations/target_platform/gyptest-target_platform.py 2012-12-24 00:16:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/configurations/x64/gyptest-x86.py gyp-haiku/test/configurations/x64/gyptest-x86.py
--- gyp/test/configurations/x64/gyptest-x86.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/configurations/x64/gyptest-x86.py 2012-12-24 00:17:00.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/copies/gyptest-all.py gyp-haiku/test/copies/gyptest-all.py
--- gyp/test/copies/gyptest-all.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/copies/gyptest-all.py 2012-12-24 00:17:05.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/copies/gyptest-default.py gyp-haiku/test/copies/gyptest-default.py
--- gyp/test/copies/gyptest-default.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/copies/gyptest-default.py 2012-12-24 00:17:27.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/copies/gyptest-slash.py gyp-haiku/test/copies/gyptest-slash.py
--- gyp/test/copies/gyptest-slash.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/copies/gyptest-slash.py 2012-12-24 00:17:31.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/copies/gyptest-updir.py gyp-haiku/test/copies/gyptest-updir.py
--- gyp/test/copies/gyptest-updir.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/copies/gyptest-updir.py 2012-12-24 00:17:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/custom-generator/gyptest-custom-generator.py gyp-haiku/test/custom-generator/gyptest-custom-generator.py
--- gyp/test/custom-generator/gyptest-custom-generator.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/custom-generator/gyptest-custom-generator.py 2012-12-24 00:17:46.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/cxxflags/gyptest-cxxflags.py gyp-haiku/test/cxxflags/gyptest-cxxflags.py
--- gyp/test/cxxflags/gyptest-cxxflags.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/cxxflags/gyptest-cxxflags.py 2012-12-24 00:17:51.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/defines/gyptest-define-override.py gyp-haiku/test/defines/gyptest-define-override.py
--- gyp/test/defines/gyptest-define-override.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/defines/gyptest-define-override.py 2012-12-24 00:17:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/defines/gyptest-defines-env-regyp.py gyp-haiku/test/defines/gyptest-defines-env-regyp.py
--- gyp/test/defines/gyptest-defines-env-regyp.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/defines/gyptest-defines-env-regyp.py 2012-12-24 00:18:02.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/defines/gyptest-defines-env.py gyp-haiku/test/defines/gyptest-defines-env.py
--- gyp/test/defines/gyptest-defines-env.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/defines/gyptest-defines-env.py 2012-12-24 00:18:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/defines/gyptest-defines.py gyp-haiku/test/defines/gyptest-defines.py
--- gyp/test/defines/gyptest-defines.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/defines/gyptest-defines.py 2012-12-24 00:18:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/defines-escaping/gyptest-defines-escaping.py gyp-haiku/test/defines-escaping/gyptest-defines-escaping.py
--- gyp/test/defines-escaping/gyptest-defines-escaping.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/defines-escaping/gyptest-defines-escaping.py 2012-12-24 00:18:16.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/dependencies/gyptest-double-dependency.py gyp-haiku/test/dependencies/gyptest-double-dependency.py
--- gyp/test/dependencies/gyptest-double-dependency.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/dependencies/gyptest-double-dependency.py 2012-12-24 00:18:46.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/dependencies/gyptest-extra-targets.py gyp-haiku/test/dependencies/gyptest-extra-targets.py
--- gyp/test/dependencies/gyptest-extra-targets.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/dependencies/gyptest-extra-targets.py 2012-12-24 00:18:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/dependencies/gyptest-lib-only.py gyp-haiku/test/dependencies/gyptest-lib-only.py
--- gyp/test/dependencies/gyptest-lib-only.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/dependencies/gyptest-lib-only.py 2012-12-24 00:18:55.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/dependencies/gyptest-none-traversal.py gyp-haiku/test/dependencies/gyptest-none-traversal.py
--- gyp/test/dependencies/gyptest-none-traversal.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/dependencies/gyptest-none-traversal.py 2012-12-24 00:18:59.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/dependency-copy/gyptest-copy.py gyp-haiku/test/dependency-copy/gyptest-copy.py
--- gyp/test/dependency-copy/gyptest-copy.py 2012-12-24 00:53:36.000000000 +0000
+++ gyp-haiku/test/dependency-copy/gyptest-copy.py 2012-12-24 00:19:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/errors/gyptest-errors.py gyp-haiku/test/errors/gyptest-errors.py
--- gyp/test/errors/gyptest-errors.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/errors/gyptest-errors.py 2012-12-24 00:19:07.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/escaping/gyptest-colon.py gyp-haiku/test/escaping/gyptest-colon.py
--- gyp/test/escaping/gyptest-colon.py 2012-12-24 00:54:01.000000000 +0000
+++ gyp-haiku/test/escaping/gyptest-colon.py 2012-12-24 00:19:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/exclusion/gyptest-exclusion.py gyp-haiku/test/exclusion/gyptest-exclusion.py
--- gyp/test/exclusion/gyptest-exclusion.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/exclusion/gyptest-exclusion.py 2012-12-24 00:19:16.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/external-cross-compile/gyptest-cross.py gyp-haiku/test/external-cross-compile/gyptest-cross.py
--- gyp/test/external-cross-compile/gyptest-cross.py 2012-12-24 00:53:38.000000000 +0000
+++ gyp-haiku/test/external-cross-compile/gyptest-cross.py 2012-12-24 00:19:22.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/actions/subdir1/make-prog1.py gyp-haiku/test/generator-output/actions/subdir1/make-prog1.py
--- gyp/test/generator-output/actions/subdir1/make-prog1.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/generator-output/actions/subdir1/make-prog1.py 2012-12-24 00:19:28.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/actions/subdir1/make-prog2.py gyp-haiku/test/generator-output/actions/subdir1/make-prog2.py
--- gyp/test/generator-output/actions/subdir1/make-prog2.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/generator-output/actions/subdir1/make-prog2.py 2012-12-24 00:19:39.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/actions/subdir2/make-file.py gyp-haiku/test/generator-output/actions/subdir2/make-file.py
--- gyp/test/generator-output/actions/subdir2/make-file.py 2012-12-24 00:53:59.000000000 +0000
+++ gyp-haiku/test/generator-output/actions/subdir2/make-file.py 2012-12-24 00:19:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-actions.py gyp-haiku/test/generator-output/gyptest-actions.py
--- gyp/test/generator-output/gyptest-actions.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-actions.py 2012-12-24 00:19:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-copies.py gyp-haiku/test/generator-output/gyptest-copies.py
--- gyp/test/generator-output/gyptest-copies.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-copies.py 2012-12-24 00:20:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-mac-bundle.py gyp-haiku/test/generator-output/gyptest-mac-bundle.py
--- gyp/test/generator-output/gyptest-mac-bundle.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-mac-bundle.py 2012-12-24 00:20:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-relocate.py gyp-haiku/test/generator-output/gyptest-relocate.py
--- gyp/test/generator-output/gyptest-relocate.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-relocate.py 2012-12-24 00:20:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-rules.py gyp-haiku/test/generator-output/gyptest-rules.py
--- gyp/test/generator-output/gyptest-rules.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-rules.py 2012-12-24 00:20:16.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-subdir2-deep.py gyp-haiku/test/generator-output/gyptest-subdir2-deep.py
--- gyp/test/generator-output/gyptest-subdir2-deep.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-subdir2-deep.py 2012-12-24 00:20:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/gyptest-top-all.py gyp-haiku/test/generator-output/gyptest-top-all.py
--- gyp/test/generator-output/gyptest-top-all.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/gyptest-top-all.py 2012-12-24 00:20:34.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/generator-output/rules/copy-file.py gyp-haiku/test/generator-output/rules/copy-file.py
--- gyp/test/generator-output/rules/copy-file.py 2012-12-24 00:54:00.000000000 +0000
+++ gyp-haiku/test/generator-output/rules/copy-file.py 2012-12-24 00:21:54.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/gyp-defines/echo.py gyp-haiku/test/gyp-defines/echo.py
--- gyp/test/gyp-defines/echo.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/gyp-defines/echo.py 2012-12-24 00:22:02.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/gyp-defines/gyptest-multiple-values.py gyp-haiku/test/gyp-defines/gyptest-multiple-values.py
--- gyp/test/gyp-defines/gyptest-multiple-values.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/gyp-defines/gyptest-multiple-values.py 2012-12-24 00:22:07.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/gyp-defines/gyptest-regyp.py gyp-haiku/test/gyp-defines/gyptest-regyp.py
--- gyp/test/gyp-defines/gyptest-regyp.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/gyp-defines/gyptest-regyp.py 2012-12-24 00:22:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hard_dependency/gyptest-exported-hard-dependency.py gyp-haiku/test/hard_dependency/gyptest-exported-hard-dependency.py
--- gyp/test/hard_dependency/gyptest-exported-hard-dependency.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/hard_dependency/gyptest-exported-hard-dependency.py 2012-12-24 00:22:17.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py gyp-haiku/test/hard_dependency/gyptest-no-exported-hard-dependency.py
--- gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/hard_dependency/gyptest-no-exported-hard-dependency.py 2012-12-24 00:22:31.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hard_dependency/src/emit.py gyp-haiku/test/hard_dependency/src/emit.py
--- gyp/test/hard_dependency/src/emit.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/hard_dependency/src/emit.py 2012-12-24 00:22:41.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hello/gyptest-all.py gyp-haiku/test/hello/gyptest-all.py
--- gyp/test/hello/gyptest-all.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/hello/gyptest-all.py 2012-12-24 00:22:47.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hello/gyptest-default.py gyp-haiku/test/hello/gyptest-default.py
--- gyp/test/hello/gyptest-default.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/hello/gyptest-default.py 2012-12-24 00:22:54.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hello/gyptest-disable-regyp.py gyp-haiku/test/hello/gyptest-disable-regyp.py
--- gyp/test/hello/gyptest-disable-regyp.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/hello/gyptest-disable-regyp.py 2012-12-24 00:23:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hello/gyptest-regyp.py gyp-haiku/test/hello/gyptest-regyp.py
--- gyp/test/hello/gyptest-regyp.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/hello/gyptest-regyp.py 2012-12-24 00:23:08.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/hello/gyptest-target.py gyp-haiku/test/hello/gyptest-target.py
--- gyp/test/hello/gyptest-target.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/hello/gyptest-target.py 2012-12-24 00:23:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py gyp-haiku/test/home_dot_gyp/gyptest-home-includes-regyp.py
--- gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/home_dot_gyp/gyptest-home-includes-regyp.py 2012-12-24 00:23:22.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/home_dot_gyp/gyptest-home-includes.py gyp-haiku/test/home_dot_gyp/gyptest-home-includes.py
--- gyp/test/home_dot_gyp/gyptest-home-includes.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/home_dot_gyp/gyptest-home-includes.py 2012-12-24 00:23:26.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/include_dirs/gyptest-all.py gyp-haiku/test/include_dirs/gyptest-all.py
--- gyp/test/include_dirs/gyptest-all.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/include_dirs/gyptest-all.py 2012-12-24 00:23:31.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/include_dirs/gyptest-default.py gyp-haiku/test/include_dirs/gyptest-default.py
--- gyp/test/include_dirs/gyptest-default.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/include_dirs/gyptest-default.py 2012-12-24 00:23:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/intermediate_dir/gyptest-intermediate-dir.py gyp-haiku/test/intermediate_dir/gyptest-intermediate-dir.py
--- gyp/test/intermediate_dir/gyptest-intermediate-dir.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/intermediate_dir/gyptest-intermediate-dir.py 2012-12-24 00:23:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/intermediate_dir/src/script.py gyp-haiku/test/intermediate_dir/src/script.py
--- gyp/test/intermediate_dir/src/script.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/intermediate_dir/src/script.py 2012-12-24 00:23:54.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/library/gyptest-shared-obj-install-path.py gyp-haiku/test/library/gyptest-shared-obj-install-path.py
--- gyp/test/library/gyptest-shared-obj-install-path.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/library/gyptest-shared-obj-install-path.py 2012-12-24 00:24:04.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/library/gyptest-shared.py gyp-haiku/test/library/gyptest-shared.py
--- gyp/test/library/gyptest-shared.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/library/gyptest-shared.py 2012-12-24 00:24:14.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/library/gyptest-static.py gyp-haiku/test/library/gyptest-static.py
--- gyp/test/library/gyptest-static.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/library/gyptest-static.py 2012-12-24 00:24:19.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/link-objects/gyptest-all.py gyp-haiku/test/link-objects/gyptest-all.py
--- gyp/test/link-objects/gyptest-all.py 2012-12-24 00:53:58.000000000 +0000
+++ gyp-haiku/test/link-objects/gyptest-all.py 2012-12-24 00:24:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-action-envvars.py gyp-haiku/test/mac/gyptest-action-envvars.py
--- gyp/test/mac/gyptest-action-envvars.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-action-envvars.py 2012-12-24 00:24:26.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-app.py gyp-haiku/test/mac/gyptest-app.py
--- gyp/test/mac/gyptest-app.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-app.py 2012-12-24 00:24:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-archs.py gyp-haiku/test/mac/gyptest-archs.py
--- gyp/test/mac/gyptest-archs.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-archs.py 2012-12-24 00:24:34.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-cflags.py gyp-haiku/test/mac/gyptest-cflags.py
--- gyp/test/mac/gyptest-cflags.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-cflags.py 2012-12-24 00:24:42.000000000 +0000
@@ -1,5 +1,4 @@
-
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-copies.py gyp-haiku/test/mac/gyptest-copies.py
--- gyp/test/mac/gyptest-copies.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-copies.py 2012-12-24 00:24:46.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-copy-dylib.py gyp-haiku/test/mac/gyptest-copy-dylib.py
--- gyp/test/mac/gyptest-copy-dylib.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-copy-dylib.py 2012-12-24 00:24:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-debuginfo.py gyp-haiku/test/mac/gyptest-debuginfo.py
--- gyp/test/mac/gyptest-debuginfo.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-debuginfo.py 2012-12-24 00:24:53.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-depend-on-bundle.py gyp-haiku/test/mac/gyptest-depend-on-bundle.py
--- gyp/test/mac/gyptest-depend-on-bundle.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-depend-on-bundle.py 2012-12-24 00:24:55.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-framework-dirs.py gyp-haiku/test/mac/gyptest-framework-dirs.py
--- gyp/test/mac/gyptest-framework-dirs.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-framework-dirs.py 2012-12-24 00:24:59.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-framework-headers.py gyp-haiku/test/mac/gyptest-framework-headers.py
--- gyp/test/mac/gyptest-framework-headers.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-framework-headers.py 2012-12-24 00:25:04.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-framework.py gyp-haiku/test/mac/gyptest-framework.py
--- gyp/test/mac/gyptest-framework.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-framework.py 2012-12-24 00:21:13.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-global-settings.py gyp-haiku/test/mac/gyptest-global-settings.py
--- gyp/test/mac/gyptest-global-settings.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-global-settings.py 2012-12-24 00:21:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-infoplist-process.py gyp-haiku/test/mac/gyptest-infoplist-process.py
--- gyp/test/mac/gyptest-infoplist-process.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-infoplist-process.py 2012-12-24 00:21:24.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-installname.py gyp-haiku/test/mac/gyptest-installname.py
--- gyp/test/mac/gyptest-installname.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-installname.py 2012-12-24 00:25:07.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-ldflags-passed-to-libtool.py gyp-haiku/test/mac/gyptest-ldflags-passed-to-libtool.py
--- gyp/test/mac/gyptest-ldflags-passed-to-libtool.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-ldflags-passed-to-libtool.py 2012-12-24 00:25:13.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-ldflags.py gyp-haiku/test/mac/gyptest-ldflags.py
--- gyp/test/mac/gyptest-ldflags.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-ldflags.py 2012-12-24 00:25:19.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-libraries.py gyp-haiku/test/mac/gyptest-libraries.py
--- gyp/test/mac/gyptest-libraries.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-libraries.py 2012-12-24 00:25:22.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-loadable-module.py gyp-haiku/test/mac/gyptest-loadable-module.py
--- gyp/test/mac/gyptest-loadable-module.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-loadable-module.py 2012-12-24 00:25:25.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-missing-cfbundlesignature.py gyp-haiku/test/mac/gyptest-missing-cfbundlesignature.py
--- gyp/test/mac/gyptest-missing-cfbundlesignature.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-missing-cfbundlesignature.py 2012-12-24 00:25:28.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-non-strs-flattened-to-env.py gyp-haiku/test/mac/gyptest-non-strs-flattened-to-env.py
--- gyp/test/mac/gyptest-non-strs-flattened-to-env.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-non-strs-flattened-to-env.py 2012-12-24 00:25:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-objc-gc.py gyp-haiku/test/mac/gyptest-objc-gc.py
--- gyp/test/mac/gyptest-objc-gc.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-objc-gc.py 2012-12-24 00:25:33.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-postbuild-copy-bundle.py gyp-haiku/test/mac/gyptest-postbuild-copy-bundle.py
--- gyp/test/mac/gyptest-postbuild-copy-bundle.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-postbuild-copy-bundle.py 2012-12-24 00:25:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-postbuild-defaults.py gyp-haiku/test/mac/gyptest-postbuild-defaults.py
--- gyp/test/mac/gyptest-postbuild-defaults.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-postbuild-defaults.py 2012-12-24 00:25:38.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-postbuild-fail.py gyp-haiku/test/mac/gyptest-postbuild-fail.py
--- gyp/test/mac/gyptest-postbuild-fail.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-postbuild-fail.py 2012-12-24 00:25:41.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-postbuild-multiple-configurations.py gyp-haiku/test/mac/gyptest-postbuild-multiple-configurations.py
--- gyp/test/mac/gyptest-postbuild-multiple-configurations.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-postbuild-multiple-configurations.py 2012-12-24 00:25:47.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-postbuild.py gyp-haiku/test/mac/gyptest-postbuild.py
--- gyp/test/mac/gyptest-postbuild.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-postbuild.py 2012-12-24 00:26:33.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-prefixheader.py gyp-haiku/test/mac/gyptest-prefixheader.py
--- gyp/test/mac/gyptest-prefixheader.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-prefixheader.py 2012-12-24 00:26:40.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-rebuild.py gyp-haiku/test/mac/gyptest-rebuild.py
--- gyp/test/mac/gyptest-rebuild.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-rebuild.py 2012-12-24 00:26:43.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-rpath.py gyp-haiku/test/mac/gyptest-rpath.py
--- gyp/test/mac/gyptest-rpath.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-rpath.py 2012-12-24 00:26:46.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-sdkroot.py gyp-haiku/test/mac/gyptest-sdkroot.py
--- gyp/test/mac/gyptest-sdkroot.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-sdkroot.py 2012-12-24 00:26:48.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-strip.py gyp-haiku/test/mac/gyptest-strip.py
--- gyp/test/mac/gyptest-strip.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-strip.py 2012-12-24 00:26:51.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-type-envvars.py gyp-haiku/test/mac/gyptest-type-envvars.py
--- gyp/test/mac/gyptest-type-envvars.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-type-envvars.py 2012-12-24 00:26:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-xcode-env-order.py gyp-haiku/test/mac/gyptest-xcode-env-order.py
--- gyp/test/mac/gyptest-xcode-env-order.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-xcode-env-order.py 2012-12-24 00:27:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/mac/gyptest-xcode-gcc.py gyp-haiku/test/mac/gyptest-xcode-gcc.py
--- gyp/test/mac/gyptest-xcode-gcc.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/mac/gyptest-xcode-gcc.py 2012-12-24 00:27:05.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/make/gyptest-dependencies.py gyp-haiku/test/make/gyptest-dependencies.py
--- gyp/test/make/gyptest-dependencies.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/make/gyptest-dependencies.py 2012-12-24 00:27:14.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/make/gyptest-noload.py gyp-haiku/test/make/gyptest-noload.py
--- gyp/test/make/gyptest-noload.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/make/gyptest-noload.py 2012-12-24 00:27:53.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/many-actions/gyptest-many-actions-unsorted.py gyp-haiku/test/many-actions/gyptest-many-actions-unsorted.py
--- gyp/test/many-actions/gyptest-many-actions-unsorted.py 2012-12-24 00:53:44.000000000 +0000
+++ gyp-haiku/test/many-actions/gyptest-many-actions-unsorted.py 2012-12-24 00:27:57.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/many-actions/gyptest-many-actions.py gyp-haiku/test/many-actions/gyptest-many-actions.py
--- gyp/test/many-actions/gyptest-many-actions.py 2012-12-24 00:53:44.000000000 +0000
+++ gyp-haiku/test/many-actions/gyptest-many-actions.py 2012-12-24 00:28:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/module/gyptest-default.py gyp-haiku/test/module/gyptest-default.py
--- gyp/test/module/gyptest-default.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/module/gyptest-default.py 2012-12-24 00:28:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/config_attrs/gyptest-config_attrs.py gyp-haiku/test/msvs/config_attrs/gyptest-config_attrs.py
--- gyp/test/msvs/config_attrs/gyptest-config_attrs.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/config_attrs/gyptest-config_attrs.py 2012-12-24 00:28:09.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/express/gyptest-express.py gyp-haiku/test/msvs/express/gyptest-express.py
--- gyp/test/msvs/express/gyptest-express.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/express/gyptest-express.py 2012-12-24 00:28:13.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/list_excluded/gyptest-all.py gyp-haiku/test/msvs/list_excluded/gyptest-all.py
--- gyp/test/msvs/list_excluded/gyptest-all.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/list_excluded/gyptest-all.py 2012-12-24 00:28:17.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/missing_sources/gyptest-missing.py gyp-haiku/test/msvs/missing_sources/gyptest-missing.py
--- gyp/test/msvs/missing_sources/gyptest-missing.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/missing_sources/gyptest-missing.py 2012-12-24 00:28:20.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
@@ -38,4 +38,4 @@
test.must_contain_any_line(test.stderr(),
["Missing input files:"])
-test.pass_test()
\ No newline at end of file
+test.pass_test()
diff -Naur gyp/test/msvs/props/gyptest-props.py gyp-haiku/test/msvs/props/gyptest-props.py
--- gyp/test/msvs/props/gyptest-props.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/props/gyptest-props.py 2012-12-24 00:28:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/shared_output/gyptest-shared_output.py gyp-haiku/test/msvs/shared_output/gyptest-shared_output.py
--- gyp/test/msvs/shared_output/gyptest-shared_output.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/shared_output/gyptest-shared_output.py 2012-12-24 00:28:27.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/msvs/uldi2010/gyptest-all.py gyp-haiku/test/msvs/uldi2010/gyptest-all.py
--- gyp/test/msvs/uldi2010/gyptest-all.py 2012-12-24 00:53:48.000000000 +0000
+++ gyp-haiku/test/msvs/uldi2010/gyptest-all.py 2012-12-24 00:28:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/multiple-targets/gyptest-all.py gyp-haiku/test/multiple-targets/gyptest-all.py
--- gyp/test/multiple-targets/gyptest-all.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/multiple-targets/gyptest-all.py 2012-12-24 00:28:33.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/multiple-targets/gyptest-default.py gyp-haiku/test/multiple-targets/gyptest-default.py
--- gyp/test/multiple-targets/gyptest-default.py 2012-12-24 00:54:05.000000000 +0000
+++ gyp-haiku/test/multiple-targets/gyptest-default.py 2012-12-24 00:28:36.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py gyp-haiku/test/ninja/action_dependencies/gyptest-action-dependencies.py
--- gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/ninja/action_dependencies/gyptest-action-dependencies.py 2012-12-24 00:28:39.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/ninja/action_dependencies/src/emit.py gyp-haiku/test/ninja/action_dependencies/src/emit.py
--- gyp/test/ninja/action_dependencies/src/emit.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/ninja/action_dependencies/src/emit.py 2012-12-24 00:28:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py gyp-haiku/test/ninja/chained-dependency/gyptest-chained-dependency.py
--- gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/ninja/chained-dependency/gyptest-chained-dependency.py 2012-12-24 00:28:47.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py gyp-haiku/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
--- gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/ninja/normalize-paths-win/gyptest-normalize-paths.py 2012-12-24 00:28:50.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py gyp-haiku/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py
--- gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py 2012-12-24 00:28:53.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/no-output/gyptest-no-output.py gyp-haiku/test/no-output/gyptest-no-output.py
--- gyp/test/no-output/gyptest-no-output.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/no-output/gyptest-no-output.py 2012-12-24 00:28:57.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/product/gyptest-product.py gyp-haiku/test/product/gyptest-product.py
--- gyp/test/product/gyptest-product.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/product/gyptest-product.py 2012-12-24 00:29:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/relative/gyptest-default.py gyp-haiku/test/relative/gyptest-default.py
--- gyp/test/relative/gyptest-default.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/relative/gyptest-default.py 2012-12-24 00:29:07.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rename/gyptest-filecase.py gyp-haiku/test/rename/gyptest-filecase.py
--- gyp/test/rename/gyptest-filecase.py 2012-12-24 00:54:03.000000000 +0000
+++ gyp-haiku/test/rename/gyptest-filecase.py 2012-12-24 00:29:12.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/restat/gyptest-restat.py gyp-haiku/test/restat/gyptest-restat.py
--- gyp/test/restat/gyptest-restat.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/restat/gyptest-restat.py 2012-12-24 00:29:28.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/restat/src/create_intermediate.py gyp-haiku/test/restat/src/create_intermediate.py
--- gyp/test/restat/src/create_intermediate.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/restat/src/create_intermediate.py 2012-12-24 00:29:32.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/restat/src/touch.py gyp-haiku/test/restat/src/touch.py
--- gyp/test/restat/src/touch.py 2012-12-24 00:53:43.000000000 +0000
+++ gyp-haiku/test/restat/src/touch.py 2012-12-24 00:29:47.000000000 +0000
@@ -1,5 +1,5 @@
-#!/usr/bin/env python
-#
+#!/boot/common/bin/python
+
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/rules/gyptest-all.py gyp-haiku/test/rules/gyptest-all.py
--- gyp/test/rules/gyptest-all.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/gyptest-all.py 2012-12-24 00:29:52.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules/gyptest-default.py gyp-haiku/test/rules/gyptest-default.py
--- gyp/test/rules/gyptest-default.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/gyptest-default.py 2012-12-24 00:29:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules/gyptest-input-root.py gyp-haiku/test/rules/gyptest-input-root.py
--- gyp/test/rules/gyptest-input-root.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/gyptest-input-root.py 2012-12-24 00:29:59.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules/gyptest-special-variables.py gyp-haiku/test/rules/gyptest-special-variables.py
--- gyp/test/rules/gyptest-special-variables.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/gyptest-special-variables.py 2012-12-24 00:30:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules/src/copy-file.py gyp-haiku/test/rules/src/copy-file.py
--- gyp/test/rules/src/copy-file.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/src/copy-file.py 2012-12-24 00:30:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules/src/rule.py gyp-haiku/test/rules/src/rule.py
--- gyp/test/rules/src/rule.py 2012-12-24 00:53:49.000000000 +0000
+++ gyp-haiku/test/rules/src/rule.py 2012-12-24 00:30:15.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/rules-dirname/gyptest-dirname.py gyp-haiku/test/rules-dirname/gyptest-dirname.py
--- gyp/test/rules-dirname/gyptest-dirname.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/rules-dirname/gyptest-dirname.py 2012-12-24 00:30:20.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules-dirname/src/copy-file.py gyp-haiku/test/rules-dirname/src/copy-file.py
--- gyp/test/rules-dirname/src/copy-file.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/rules-dirname/src/copy-file.py 2012-12-24 00:30:24.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules-dirname/src/subdir/printvars.py gyp-haiku/test/rules-dirname/src/subdir/printvars.py
--- gyp/test/rules-dirname/src/subdir/printvars.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/rules-dirname/src/subdir/printvars.py 2012-12-24 00:30:27.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules-rebuild/gyptest-all.py gyp-haiku/test/rules-rebuild/gyptest-all.py
--- gyp/test/rules-rebuild/gyptest-all.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/rules-rebuild/gyptest-all.py 2012-12-24 00:30:29.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules-rebuild/gyptest-default.py gyp-haiku/test/rules-rebuild/gyptest-default.py
--- gyp/test/rules-rebuild/gyptest-default.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/rules-rebuild/gyptest-default.py 2012-12-24 00:30:33.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/rules-rebuild/src/make-sources.py gyp-haiku/test/rules-rebuild/src/make-sources.py
--- gyp/test/rules-rebuild/src/make-sources.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/rules-rebuild/src/make-sources.py 2012-12-24 00:30:38.000000000 +0000
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
+
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff -Naur gyp/test/rules-variables/gyptest-rules-variables.py gyp-haiku/test/rules-variables/gyptest-rules-variables.py
--- gyp/test/rules-variables/gyptest-rules-variables.py 2012-12-24 00:54:02.000000000 +0000
+++ gyp-haiku/test/rules-variables/gyptest-rules-variables.py 2012-12-24 00:30:42.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-gyp-name/gyptest-all.py gyp-haiku/test/same-gyp-name/gyptest-all.py
--- gyp/test/same-gyp-name/gyptest-all.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/same-gyp-name/gyptest-all.py 2012-12-24 00:30:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-gyp-name/gyptest-default.py gyp-haiku/test/same-gyp-name/gyptest-default.py
--- gyp/test/same-gyp-name/gyptest-default.py 2012-12-24 00:53:54.000000000 +0000
+++ gyp-haiku/test/same-gyp-name/gyptest-default.py 2012-12-24 00:30:48.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-rule-output-file-name/gyptest-all.py gyp-haiku/test/same-rule-output-file-name/gyptest-all.py
--- gyp/test/same-rule-output-file-name/gyptest-all.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/same-rule-output-file-name/gyptest-all.py 2012-12-24 00:30:51.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-rule-output-file-name/src/touch.py gyp-haiku/test/same-rule-output-file-name/src/touch.py
--- gyp/test/same-rule-output-file-name/src/touch.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/same-rule-output-file-name/src/touch.py 2012-12-24 00:30:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-source-file-name/gyptest-all.py gyp-haiku/test/same-source-file-name/gyptest-all.py
--- gyp/test/same-source-file-name/gyptest-all.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/same-source-file-name/gyptest-all.py 2012-12-24 00:31:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-source-file-name/gyptest-default.py gyp-haiku/test/same-source-file-name/gyptest-default.py
--- gyp/test/same-source-file-name/gyptest-default.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/same-source-file-name/gyptest-default.py 2012-12-24 00:31:49.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-target-name/gyptest-same-target-name.py gyp-haiku/test/same-target-name/gyptest-same-target-name.py
--- gyp/test/same-target-name/gyptest-same-target-name.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/same-target-name/gyptest-same-target-name.py 2012-12-24 00:31:52.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2010 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-target-name-different-directory/gyptest-all.py gyp-haiku/test/same-target-name-different-directory/gyptest-all.py
--- gyp/test/same-target-name-different-directory/gyptest-all.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/same-target-name-different-directory/gyptest-all.py 2012-12-24 00:31:55.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/same-target-name-different-directory/src/touch.py gyp-haiku/test/same-target-name-different-directory/src/touch.py
--- gyp/test/same-target-name-different-directory/src/touch.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/same-target-name-different-directory/src/touch.py 2012-12-24 00:31:58.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py gyp-haiku/test/sanitize-rule-names/gyptest-sanitize-rule-names.py
--- gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/sanitize-rule-names/gyptest-sanitize-rule-names.py 2012-12-24 00:32:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/sanitize-rule-names/script.py gyp-haiku/test/sanitize-rule-names/script.py
--- gyp/test/sanitize-rule-names/script.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/sanitize-rule-names/script.py 2012-12-24 00:32:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/scons_tools/gyptest-tools.py gyp-haiku/test/scons_tools/gyptest-tools.py
--- gyp/test/scons_tools/gyptest-tools.py 2012-12-24 00:53:44.000000000 +0000
+++ gyp-haiku/test/scons_tools/gyptest-tools.py 2012-12-24 00:32:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/sibling/gyptest-all.py gyp-haiku/test/sibling/gyptest-all.py
--- gyp/test/sibling/gyptest-all.py 2012-12-24 00:54:01.000000000 +0000
+++ gyp-haiku/test/sibling/gyptest-all.py 2012-12-24 00:32:08.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/sibling/gyptest-relocate.py gyp-haiku/test/sibling/gyptest-relocate.py
--- gyp/test/sibling/gyptest-relocate.py 2012-12-24 00:54:01.000000000 +0000
+++ gyp-haiku/test/sibling/gyptest-relocate.py 2012-12-24 00:32:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/small/gyptest-small.py gyp-haiku/test/small/gyptest-small.py
--- gyp/test/small/gyptest-small.py 2012-12-24 00:53:55.000000000 +0000
+++ gyp-haiku/test/small/gyptest-small.py 2012-12-24 00:32:13.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/standalone/gyptest-standalone.py gyp-haiku/test/standalone/gyptest-standalone.py
--- gyp/test/standalone/gyptest-standalone.py 2012-12-24 00:54:04.000000000 +0000
+++ gyp-haiku/test/standalone/gyptest-standalone.py 2012-12-24 00:32:15.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-subdir-all.py gyp-haiku/test/subdirectory/gyptest-subdir-all.py
--- gyp/test/subdirectory/gyptest-subdir-all.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-subdir-all.py 2012-12-24 00:32:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-subdir-default.py gyp-haiku/test/subdirectory/gyptest-subdir-default.py
--- gyp/test/subdirectory/gyptest-subdir-default.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-subdir-default.py 2012-12-24 00:32:26.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-subdir2-deep.py gyp-haiku/test/subdirectory/gyptest-subdir2-deep.py
--- gyp/test/subdirectory/gyptest-subdir2-deep.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-subdir2-deep.py 2012-12-24 00:32:29.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-SYMROOT-all.py gyp-haiku/test/subdirectory/gyptest-SYMROOT-all.py
--- gyp/test/subdirectory/gyptest-SYMROOT-all.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-SYMROOT-all.py 2012-12-24 00:32:18.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-SYMROOT-default.py gyp-haiku/test/subdirectory/gyptest-SYMROOT-default.py
--- gyp/test/subdirectory/gyptest-SYMROOT-default.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-SYMROOT-default.py 2012-12-24 00:32:21.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-top-all.py gyp-haiku/test/subdirectory/gyptest-top-all.py
--- gyp/test/subdirectory/gyptest-top-all.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-top-all.py 2012-12-24 00:32:32.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/subdirectory/gyptest-top-default.py gyp-haiku/test/subdirectory/gyptest-top-default.py
--- gyp/test/subdirectory/gyptest-top-default.py 2012-12-24 00:53:57.000000000 +0000
+++ gyp-haiku/test/subdirectory/gyptest-top-default.py 2012-12-24 00:32:35.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/toolsets/gyptest-toolsets.py gyp-haiku/test/toolsets/gyptest-toolsets.py
--- gyp/test/toolsets/gyptest-toolsets.py 2012-12-24 00:54:07.000000000 +0000
+++ gyp-haiku/test/toolsets/gyptest-toolsets.py 2012-12-24 00:32:38.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/toplevel-dir/gyptest-toplevel-dir.py gyp-haiku/test/toplevel-dir/gyptest-toplevel-dir.py
--- gyp/test/toplevel-dir/gyptest-toplevel-dir.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/toplevel-dir/gyptest-toplevel-dir.py 2012-12-24 00:32:40.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/commands/gyptest-commands-ignore-env.py gyp-haiku/test/variables/commands/gyptest-commands-ignore-env.py
--- gyp/test/variables/commands/gyptest-commands-ignore-env.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/variables/commands/gyptest-commands-ignore-env.py 2012-12-24 00:32:43.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/commands/gyptest-commands-repeated.py gyp-haiku/test/variables/commands/gyptest-commands-repeated.py
--- gyp/test/variables/commands/gyptest-commands-repeated.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/variables/commands/gyptest-commands-repeated.py 2012-12-24 00:32:45.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/commands/gyptest-commands.py gyp-haiku/test/variables/commands/gyptest-commands.py
--- gyp/test/variables/commands/gyptest-commands.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/variables/commands/gyptest-commands.py 2012-12-24 00:32:48.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/filelist/gyptest-filelist.py gyp-haiku/test/variables/filelist/gyptest-filelist.py
--- gyp/test/variables/filelist/gyptest-filelist.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/variables/filelist/gyptest-filelist.py 2012-12-24 00:32:52.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/latelate/gyptest-latelate.py gyp-haiku/test/variables/latelate/gyptest-latelate.py
--- gyp/test/variables/latelate/gyptest-latelate.py 2012-12-24 00:53:47.000000000 +0000
+++ gyp-haiku/test/variables/latelate/gyptest-latelate.py 2012-12-24 00:34:21.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variables/variable-in-path/gyptest-variable-in-path.py gyp-haiku/test/variables/variable-in-path/gyptest-variable-in-path.py
--- gyp/test/variables/variable-in-path/gyptest-variable-in-path.py 2012-12-24 00:53:46.000000000 +0000
+++ gyp-haiku/test/variables/variable-in-path/gyptest-variable-in-path.py 2012-12-24 00:34:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/variants/gyptest-variants.py gyp-haiku/test/variants/gyptest-variants.py
--- gyp/test/variants/gyptest-variants.py 2012-12-24 00:53:37.000000000 +0000
+++ gyp-haiku/test/variants/gyptest-variants.py 2012-12-24 00:34:35.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-asm-files.py gyp-haiku/test/win/gyptest-asm-files.py
--- gyp/test/win/gyptest-asm-files.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-asm-files.py 2012-12-24 00:34:38.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-additional-include-dirs.py gyp-haiku/test/win/gyptest-cl-additional-include-dirs.py
--- gyp/test/win/gyptest-cl-additional-include-dirs.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-additional-include-dirs.py 2012-12-24 00:34:41.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-additional-options.py gyp-haiku/test/win/gyptest-cl-additional-options.py
--- gyp/test/win/gyptest-cl-additional-options.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-additional-options.py 2012-12-24 00:34:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-buffer-security-check.py gyp-haiku/test/win/gyptest-cl-buffer-security-check.py
--- gyp/test/win/gyptest-cl-buffer-security-check.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-buffer-security-check.py 2012-12-24 00:34:46.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-character-set.py gyp-haiku/test/win/gyptest-cl-character-set.py
--- gyp/test/win/gyptest-cl-character-set.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-character-set.py 2012-12-24 00:34:49.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-debug-format.py gyp-haiku/test/win/gyptest-cl-debug-format.py
--- gyp/test/win/gyptest-cl-debug-format.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-debug-format.py 2012-12-24 00:34:51.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-exception-handling.py gyp-haiku/test/win/gyptest-cl-exception-handling.py
--- gyp/test/win/gyptest-cl-exception-handling.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-exception-handling.py 2012-12-24 00:34:53.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-function-level-linking.py gyp-haiku/test/win/gyptest-cl-function-level-linking.py
--- gyp/test/win/gyptest-cl-function-level-linking.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-function-level-linking.py 2012-12-24 00:34:56.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-optimizations.py gyp-haiku/test/win/gyptest-cl-optimizations.py
--- gyp/test/win/gyptest-cl-optimizations.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-optimizations.py 2012-12-24 00:34:59.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-pdbname.py gyp-haiku/test/win/gyptest-cl-pdbname.py
--- gyp/test/win/gyptest-cl-pdbname.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-pdbname.py 2012-12-24 00:35:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-rtti.py gyp-haiku/test/win/gyptest-cl-rtti.py
--- gyp/test/win/gyptest-cl-rtti.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-rtti.py 2012-12-24 00:35:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-runtime-checks.py gyp-haiku/test/win/gyptest-cl-runtime-checks.py
--- gyp/test/win/gyptest-cl-runtime-checks.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-runtime-checks.py 2012-12-24 00:35:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-runtime-library.py gyp-haiku/test/win/gyptest-cl-runtime-library.py
--- gyp/test/win/gyptest-cl-runtime-library.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-runtime-library.py 2012-12-24 00:35:08.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-warning-as-error.py gyp-haiku/test/win/gyptest-cl-warning-as-error.py
--- gyp/test/win/gyptest-cl-warning-as-error.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-warning-as-error.py 2012-12-24 00:35:10.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-cl-warning-level.py gyp-haiku/test/win/gyptest-cl-warning-level.py
--- gyp/test/win/gyptest-cl-warning-level.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-cl-warning-level.py 2012-12-24 00:35:13.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-command-quote.py gyp-haiku/test/win/gyptest-command-quote.py
--- gyp/test/win/gyptest-command-quote.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-command-quote.py 2012-12-24 00:35:15.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-additional-deps.py gyp-haiku/test/win/gyptest-link-additional-deps.py
--- gyp/test/win/gyptest-link-additional-deps.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-additional-deps.py 2012-12-24 00:35:19.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-additional-options.py gyp-haiku/test/win/gyptest-link-additional-options.py
--- gyp/test/win/gyptest-link-additional-options.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-additional-options.py 2012-12-24 00:35:21.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-aslr.py gyp-haiku/test/win/gyptest-link-aslr.py
--- gyp/test/win/gyptest-link-aslr.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-aslr.py 2012-12-24 00:35:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-debug-info.py gyp-haiku/test/win/gyptest-link-debug-info.py
--- gyp/test/win/gyptest-link-debug-info.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-debug-info.py 2012-12-24 00:35:26.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-default-libs.py gyp-haiku/test/win/gyptest-link-default-libs.py
--- gyp/test/win/gyptest-link-default-libs.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-default-libs.py 2012-12-24 00:35:30.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-deffile.py gyp-haiku/test/win/gyptest-link-deffile.py
--- gyp/test/win/gyptest-link-deffile.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-deffile.py 2012-12-24 00:35:32.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-delay-load-dlls.py gyp-haiku/test/win/gyptest-link-delay-load-dlls.py
--- gyp/test/win/gyptest-link-delay-load-dlls.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-delay-load-dlls.py 2012-12-24 00:35:34.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-entrypointsymbol.py gyp-haiku/test/win/gyptest-link-entrypointsymbol.py
--- gyp/test/win/gyptest-link-entrypointsymbol.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-entrypointsymbol.py 2012-12-24 00:35:37.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-fixed-base.py gyp-haiku/test/win/gyptest-link-fixed-base.py
--- gyp/test/win/gyptest-link-fixed-base.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-fixed-base.py 2012-12-24 00:35:39.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-generate-manifest.py gyp-haiku/test/win/gyptest-link-generate-manifest.py
--- gyp/test/win/gyptest-link-generate-manifest.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-generate-manifest.py 2012-12-24 00:35:42.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-incremental.py gyp-haiku/test/win/gyptest-link-incremental.py
--- gyp/test/win/gyptest-link-incremental.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-incremental.py 2012-12-24 00:35:46.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-library-adjust.py gyp-haiku/test/win/gyptest-link-library-adjust.py
--- gyp/test/win/gyptest-link-library-adjust.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-library-adjust.py 2012-12-24 00:35:49.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-library-directories.py gyp-haiku/test/win/gyptest-link-library-directories.py
--- gyp/test/win/gyptest-link-library-directories.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-library-directories.py 2012-12-24 00:35:52.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-nodefaultlib.py gyp-haiku/test/win/gyptest-link-nodefaultlib.py
--- gyp/test/win/gyptest-link-nodefaultlib.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-nodefaultlib.py 2012-12-24 00:35:55.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-nxcompat.py gyp-haiku/test/win/gyptest-link-nxcompat.py
--- gyp/test/win/gyptest-link-nxcompat.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-nxcompat.py 2012-12-24 00:35:58.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-opt-icf.py gyp-haiku/test/win/gyptest-link-opt-icf.py
--- gyp/test/win/gyptest-link-opt-icf.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-opt-icf.py 2012-12-24 00:36:01.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-opt-ref.py gyp-haiku/test/win/gyptest-link-opt-ref.py
--- gyp/test/win/gyptest-link-opt-ref.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-opt-ref.py 2012-12-24 00:36:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-outputfile.py gyp-haiku/test/win/gyptest-link-outputfile.py
--- gyp/test/win/gyptest-link-outputfile.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-outputfile.py 2012-12-24 00:36:14.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-restat-importlib.py gyp-haiku/test/win/gyptest-link-restat-importlib.py
--- gyp/test/win/gyptest-link-restat-importlib.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-restat-importlib.py 2012-12-24 00:36:17.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-subsystem.py gyp-haiku/test/win/gyptest-link-subsystem.py
--- gyp/test/win/gyptest-link-subsystem.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-subsystem.py 2012-12-24 00:36:20.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-link-uldi.py gyp-haiku/test/win/gyptest-link-uldi.py
--- gyp/test/win/gyptest-link-uldi.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-link-uldi.py 2012-12-24 00:36:23.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-long-command-line.py gyp-haiku/test/win/gyptest-long-command-line.py
--- gyp/test/win/gyptest-long-command-line.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-long-command-line.py 2012-12-24 00:37:44.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-macro-projectname.py gyp-haiku/test/win/gyptest-macro-projectname.py
--- gyp/test/win/gyptest-macro-projectname.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-macro-projectname.py 2012-12-24 00:37:48.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-macro-vcinstalldir.py gyp-haiku/test/win/gyptest-macro-vcinstalldir.py
--- gyp/test/win/gyptest-macro-vcinstalldir.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-macro-vcinstalldir.py 2012-12-24 00:37:53.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-macros-containing-gyp.py gyp-haiku/test/win/gyptest-macros-containing-gyp.py
--- gyp/test/win/gyptest-macros-containing-gyp.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-macros-containing-gyp.py 2012-12-24 00:37:57.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-macros-in-inputs-and-outputs.py gyp-haiku/test/win/gyptest-macros-in-inputs-and-outputs.py
--- gyp/test/win/gyptest-macros-in-inputs-and-outputs.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-macros-in-inputs-and-outputs.py 2012-12-24 00:38:00.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-midl-rules.py gyp-haiku/test/win/gyptest-midl-rules.py
--- gyp/test/win/gyptest-midl-rules.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-midl-rules.py 2012-12-24 00:38:03.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-quoting-commands.py gyp-haiku/test/win/gyptest-quoting-commands.py
--- gyp/test/win/gyptest-quoting-commands.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-quoting-commands.py 2012-12-24 00:38:06.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/gyptest-rc-build.py gyp-haiku/test/win/gyptest-rc-build.py
--- gyp/test/win/gyptest-rc-build.py 2012-12-24 00:53:53.000000000 +0000
+++ gyp-haiku/test/win/gyptest-rc-build.py 2012-12-24 00:38:09.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/precompiled/gyptest-all.py gyp-haiku/test/win/precompiled/gyptest-all.py
--- gyp/test/win/precompiled/gyptest-all.py 2012-12-24 00:53:51.000000000 +0000
+++ gyp-haiku/test/win/precompiled/gyptest-all.py 2012-12-24 00:38:11.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/test/win/vs-macros/as.py gyp-haiku/test/win/vs-macros/as.py
--- gyp/test/win/vs-macros/as.py 2012-12-24 00:53:52.000000000 +0000
+++ gyp-haiku/test/win/vs-macros/as.py 2012-12-24 00:38:14.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/tools/graphviz.py gyp-haiku/tools/graphviz.py
--- gyp/tools/graphviz.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/tools/graphviz.py 2012-12-24 00:38:17.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2011 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/tools/pretty_gyp.py gyp-haiku/tools/pretty_gyp.py
--- gyp/tools/pretty_gyp.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/tools/pretty_gyp.py 2012-12-24 00:38:21.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/tools/pretty_sln.py gyp-haiku/tools/pretty_sln.py
--- gyp/tools/pretty_sln.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/tools/pretty_sln.py 2012-12-24 00:38:24.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff -Naur gyp/tools/pretty_vcproj.py gyp-haiku/tools/pretty_vcproj.py
--- gyp/tools/pretty_vcproj.py 2012-12-24 00:54:08.000000000 +0000
+++ gyp-haiku/tools/pretty_vcproj.py 2012-12-24 00:38:26.000000000 +0000
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/boot/common/bin/python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be