mirror of
https://github.com/electron/node-gyp.git
synced 2025-08-15 12:58:19 +02:00

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-gyp/pull/781 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
16 lines
447 B
Python
Executable file
16 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())
|