mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
1d65b99d5d
Includes two patches for AIX. Adds support for both 32-bit and 64-bit files[0] and uses -RPf for cp instead of -af (which is unsupported)[1] [0] https://codereview.chromium.org/1319663007 [1] https://codereview.chromium.org/1368133002 PR-URL: https://github.com/nodejs/node/pull/3487 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
17 lines
447 B
Python
Executable File
17 lines
447 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2009 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.
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Make sure we're using the version of pylib in this repo, not one installed
|
|
# elsewhere on the system.
|
|
sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), 'pylib'))
|
|
import gyp
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(gyp.script_main())
|