diff options
| author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:21 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:20:05 +0200 |
| commit | 19ba17ee3ba946ac865849df89d7c2988ea5aca9 (patch) | |
| tree | ab5ad66f2dff9a2f138c850ce7a3436d35bf95a3 /package/gtest | |
| parent | 1eb57df2b2eb965d58dc3d08a35238aa41af9e54 (diff) | |
| download | buildroot-19ba17ee3ba946ac865849df89d7c2988ea5aca9.tar.gz buildroot-19ba17ee3ba946ac865849df89d7c2988ea5aca9.zip | |
Globally replace $(HOST_DIR)/usr/lib with $(HOST_DIR)/lib
Since things are no longer installed in $(HOST_DIR)/usr, the callers
should also not refer to it.
This is a mechanical change with
git grep -l '$(HOST_DIR)/usr/lib' | xargs sed -i 's%$(HOST_DIR)/usr/lib%$(HOST_DIR)/lib%g'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gtest')
| -rw-r--r-- | package/gtest/gtest.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gtest/gtest.mk b/package/gtest/gtest.mk index 36441be3ad..b62ceb3270 100644 --- a/package/gtest/gtest.mk +++ b/package/gtest/gtest.mk @@ -26,7 +26,7 @@ HOST_GTEST_DEPENDENCIES += host-python endif HOST_GTEST_GMOCK_PYTHONPATH = \ - $(HOST_DIR)/usr/lib/python$(HOST_GTEST_PYTHON_VERSION)/site-packages + $(HOST_DIR)/lib/python$(HOST_GTEST_PYTHON_VERSION)/site-packages # While it is possible to build gtest as shared library, using this gtest shared # library requires to set some special configure option in the project using |

