commit | 6a0476930a6eab198155b60e0a9c7376a8cfc31b | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Mon Jul 18 17:24:47 2016 -0700 |
committer | Dan Albert <danalbert@google.com> | Mon Jul 18 23:31:18 2016 -0700 |
tree | a4b1d0a804204a9c158b79fc4374a69928db1925 | |
parent | 3d92b27717f7c995ac1f63ec6ffba7d03b8bd46b [diff] [blame] |
Remove the implicit "_" in subnames. The NDK stub libraries need to use subname, but should use "." instead of "_". Test: Still builds. Change-Id: Ib4b0303531e03968c55671ea167ab987adebd783
diff --git a/android/androidmk.go b/android/androidmk.go index 8d2951d..7d7707f 100644 --- a/android/androidmk.go +++ b/android/androidmk.go
@@ -146,7 +146,7 @@ } if data.SubName != "" { - name += "_" + data.SubName + name += data.SubName } if data.Custom != nil {