bbfe6419b98271b6c7e1053c1a19e62773f59302
[platform/framework/web/crosswalk.git] / src / xwalk / packaging / crosswalk-angle-do-not-depend-git-index.patch
1 Author: Raphael Kubo Da Costa <raphael.kubo.da.costa@intel.com>
2
3 Angle : Do not use .git/index as a dependency. Tizen is built by packing
4 everything in a tarball where there is no .git/ directory.
5
6 This has been fixed upstream already :
7 http://code.google.com/p/chromium/issues/detail?id=395705
8
9 diff --git src/third_party/angle/src/angle.gypi src/third_party/angle/src/angle.gypi
10 index 5339369..c7ef8c1 100644
11 --- src/third_party/angle/src/angle.gypi
12 +++ src/third_party/angle/src/angle.gypi
13 @@ -56,7 +56,7 @@
14                          {
15                              'action_name': 'Generate Commit ID Header',
16                              'message': 'Generating commit ID header...',
17 -                            'inputs': [ '<(SHARED_INTERMEDIATE_DIR)/commit_id.py', '<(angle_path)/.git/index' ],
18 +                            'inputs': [ '<(SHARED_INTERMEDIATE_DIR)/commit_id.py' ],
19                              'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/commit.h' ],
20                              'action': [ 'python', '<(SHARED_INTERMEDIATE_DIR)/commit_id.py', '<(SHARED_INTERMEDIATE_DIR)/commit.h' ],
21                          },