aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Liaw <edliaw@google.com>2024-04-12 17:34:46 +0000
committerEdward Liaw <edliaw@google.com>2024-04-26 00:13:26 +0000
commit46658b4665cb505c804398e060efe5b713a785e9 (patch)
treea57d8bd4b18bd3cf579346f92cf14c73fc0f66e1
parent9b0e42199562d378f1f80fb01959f191c8a84246 (diff)
downloadltp-main.tar.gz
Android.bp: fix build complaint of missing lapi/syscalls/orderHEADmastermain
Fixes this build complaint: cat: ./tools/src/external/ltp/include/lapi/syscalls/order: No such file or directory Bug: 327505050 Test: mma Change-Id: Idf37c18449a2fa200dd755e6149f709b0ac7618b Signed-off-by: Edward Liaw <edliaw@google.com>
-rw-r--r--Android.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 0552e230f..17409e61f 100644
--- a/Android.bp
+++ b/Android.bp
@@ -91,10 +91,11 @@ filegroup {
genrule {
name: "ltp_syscalls_h",
tool_files: [
+ "include/lapi/syscalls/order",
"include/lapi/syscalls/regen.sh",
"include/lapi/syscalls/*.in",
],
- cmd: "$(location) $(genDir)/lapi/syscalls.h",
+ cmd: "$(location include/lapi/syscalls/regen.sh) $(genDir)/lapi/syscalls.h",
out: ["lapi/syscalls.h"],
}