summaryrefslogtreecommitdiff
path: root/xml
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2024-12-17 10:42:42 -0800
committer Cole Faust <colefaust@google.com> 2024-12-17 10:42:42 -0800
commit6b7075f19fd4efa290179e894ae942e16ac9f699 (patch)
treedec563ce7eb60b0dbeb9913609181c596c70ac6d /xml
parent85289cfc214bbd75feb976dcf87986a0a28415c0 (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 'xml')
-rw-r--r--xml/xml_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml/xml_test.go b/xml/xml_test.go
index a59a29318..9f28315b7 100644
--- a/xml/xml_test.go
+++ b/xml/xml_test.go
@@ -80,5 +80,5 @@ func TestPrebuiltEtcXml(t *testing.T) {
}
m := result.ModuleForTests("foo.xml", "android_arm64_armv8-a").Module().(*prebuiltEtcXml)
- android.AssertPathRelativeToTopEquals(t, "installDir", "out/soong/target/product/test_device/system/etc", m.InstallDirPath())
+ android.AssertPathRelativeToTopEquals(t, "installDir", "out/target/product/test_device/system/etc", m.InstallDirPath())
}