diff options
author | 2024-12-17 10:42:42 -0800 | |
---|---|---|
committer | 2024-12-17 10:42:42 -0800 | |
commit | 6b7075f19fd4efa290179e894ae942e16ac9f699 (patch) | |
tree | dec563ce7eb60b0dbeb9913609181c596c70ac6d /java/dexpreopt_test.go | |
parent | 85289cfc214bbd75feb976dcf87986a0a28415c0 (diff) |
Always install to out/target instead of out/soong/target
So that when using soong-only builds, we don't have to update
a bunch of tools and other parts of soong that expect files in
out/target.
Bug: 383892968
Test: m nothing --no-skip-soong-tests
Change-Id: Idba3b5a416e6ffff799ec3ce632a8a4fbafe341f
Diffstat (limited to 'java/dexpreopt_test.go')
-rw-r--r-- | java/dexpreopt_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/dexpreopt_test.go b/java/dexpreopt_test.go index 07d0595e6..207ff65b3 100644 --- a/java/dexpreopt_test.go +++ b/java/dexpreopt_test.go @@ -296,7 +296,7 @@ func TestDex2oatToolDeps(t *testing.T) { }) } - sourceDex2oatPath := "host/linux-x86/bin/dex2oatd" + sourceDex2oatPath := "../host/linux-x86/bin/dex2oatd" prebuiltDex2oatPath := ".intermediates/prebuilt_dex2oatd/linux_glibc_x86_64/dex2oatd" testDex2oatToolDep(true, false, false, sourceDex2oatPath) |