diff options
author | Erich Eckner <git@eckner.net> | 2018-12-21 11:46:18 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-12-21 11:46:18 +0100 |
commit | 4d9c73f4367e89020aa242b377b9c2d77ffc7d52 (patch) | |
tree | 1c7c1487f75b2defb94495bfc67a739c9e153cff /community/electron2/allow-i686.patch | |
parent | 55b4da9f6f7d3b2605aedc390593bd97eef87ae0 (diff) | |
download | packages-4d9c73f4367e89020aa242b377b9c2d77ffc7d52.tar.xz |
community/electron2: add fixes from electron
Diffstat (limited to 'community/electron2/allow-i686.patch')
-rw-r--r-- | community/electron2/allow-i686.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/community/electron2/allow-i686.patch b/community/electron2/allow-i686.patch new file mode 100644 index 00000000..154ab9bc --- /dev/null +++ b/community/electron2/allow-i686.patch @@ -0,0 +1,14 @@ +--- a/script/update.py ++++ b/script/update.py +@@ -15,11 +15,6 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + + def main(): + os.chdir(SOURCE_ROOT) +- +- if PLATFORM != 'win32' and platform.architecture()[0] != '64bit': +- print 'Electron is required to be built on a 64bit machine' +- return 1 +- + update_external_binaries() + return update_gyp() + |