diff options
author | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:41:10 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:41:10 -0700 |
commit | 9f4113cc3536cf4f03207b9f34d5d7ddcac4b97c (patch) | |
tree | f94b49097e893d46444eef2d2af0f086c9fa1719 | |
parent | 0d42d6b30376a913ae952d54c5a9285a5cb11d9c (diff) |
Rename target.linux[_x86[_64]] to target.linux_glibc[_x86[_64]]
In the future, target.linux will apply to all targets running a linux kernel
(android, linux_glibc, linux_bionic). So move all current users to the specific
linux_glibc.
There will be another cleanup pass later that will move some instances back to
target.linux if the properties should be shared with target.android and
target.linux_bionic, but target.linux needs to be removed first.
Test: out/soong/build.ninja identical before/after
Change-Id: I9471cb8770792d37d78b4995ff10044a9b1478ae
Exempt-From-Owner-Approval: build system cleanup
-rw-r--r-- | dist/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Android.bp b/dist/Android.bp index 084a12d..6011bfd 100644 --- a/dist/Android.bp +++ b/dist/Android.bp @@ -41,7 +41,7 @@ cc_defaults { ], target: { - linux: { + linux_glibc: { cflags: ["-DHAVE_POSIX_FALLOCATE=1"], }, }, |