diff options
author | Jaewoong Jung <jungjw@google.com> | 2018-11-06 18:00:39 +0000 |
---|---|---|
committer | Jaewoong Jung <jungjw@google.com> | 2018-11-06 18:00:39 +0000 |
commit | 3affc07ca03b6e86a01658020e273ba77cc8114d (patch) | |
tree | 95ec1d039929c7a4ee388333447bc9e899c4d9ef /android/androidmk.go | |
parent | 9d5ca159dc2bc56948f011745122bfba172d492d (diff) | |
download | build_soong-3affc07ca03b6e86a01658020e273ba77cc8114d.tar.gz build_soong-3affc07ca03b6e86a01658020e273ba77cc8114d.tar.bz2 build_soong-3affc07ca03b6e86a01658020e273ba77cc8114d.zip |
Revert "Export static libraries."
This reverts commit 9d5ca159dc2bc56948f011745122bfba172d492d.
Reason for revert: This broke few builds.
Change-Id: Id9c4d7c145602a55ae07bb177f2c236e16f4fb63
Diffstat (limited to 'android/androidmk.go')
-rw-r--r-- | android/androidmk.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/android/androidmk.go b/android/androidmk.go index 493ba97e..70305231 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -275,10 +275,9 @@ func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Mod if amod.commonProperties.Owner != nil { fmt.Fprintln(&data.preamble, "LOCAL_MODULE_OWNER :=", *amod.commonProperties.Owner) } - } - - if amod.commonProperties.Notice != nil { - fmt.Fprintln(&data.preamble, "LOCAL_NOTICE_FILE :=", "$(LOCAL_PATH)/"+*amod.commonProperties.Notice) + if amod.commonProperties.Notice != nil { + fmt.Fprintln(&data.preamble, "LOCAL_NOTICE_FILE :=", "$(LOCAL_PATH)/"+*amod.commonProperties.Notice) + } } if host { |