aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-04-08 13:00:40 -0700
committerColin Cross <ccross@android.com>2019-04-11 14:13:43 -0700
commit5599d791176f1ac1eb040756c09f80eeff23f4c6 (patch)
tree57d1ea0a8fd4bae739b27861c5173b0b15d76d49 /python
parent558469912537ad5b9e31e0ce1d8312b12922d5f7 (diff)
downloadbuild_soong-5599d791176f1ac1eb040756c09f80eeff23f4c6.tar.gz
build_soong-5599d791176f1ac1eb040756c09f80eeff23f4c6.tar.bz2
build_soong-5599d791176f1ac1eb040756c09f80eeff23f4c6.zip
Fix python proto srczip argument order
-P has to come before -D to have an effect on the files read from the directory. Fixes: 130160833 Test: atest acloud_test Change-Id: I62a998f1ad1e3b45f590babbf39330955d368373 Merged-In: I62a998f1ad1e3b45f590babbf39330955d368373 (cherry picked from commit 09364fd955c38983f8cd05133e9685e2502f0d09)
Diffstat (limited to 'python')
-rw-r--r--python/proto.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/proto.go b/python/proto.go
index b3ffaa67..85ed1a51 100644
--- a/python/proto.go
+++ b/python/proto.go
@@ -35,12 +35,12 @@ func genProto(ctx android.ModuleContext, protoFile android.Path, flags android.P
// into a srcszip.
zipCmd := rule.Command().
Tool(ctx.Config().HostToolPath(ctx, "soong_zip")).
- FlagWithOutput("-o ", srcsZipFile).
- FlagWithArg("-C ", outDir.String()).
- FlagWithArg("-D ", outDir.String())
+ FlagWithOutput("-o ", srcsZipFile)
if pkgPath != "" {
zipCmd.FlagWithArg("-P ", pkgPath)
}
+ zipCmd.FlagWithArg("-C ", outDir.String()).
+ FlagWithArg("-D ", outDir.String())
rule.Command().Text("rm -rf").Flag(outDir.String())