diff options
| -rw-r--r-- | cmds/installd/Android.bp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmds/installd/Android.bp b/cmds/installd/Android.bp index 488070d338..e33b2a82ab 100644 --- a/cmds/installd/Android.bp +++ b/cmds/installd/Android.bp @@ -231,16 +231,16 @@ cc_binary { } // OTA slot script -cc_prebuilt_binary { +sh_binary { name: "otapreopt_slot", - srcs: ["otapreopt_slot.sh"], + src: "otapreopt_slot.sh", init_rc: ["otapreopt.rc"], } // OTA postinstall script -cc_prebuilt_binary { +sh_binary { name: "otapreopt_script", - srcs: ["otapreopt_script.sh"], + src: "otapreopt_script.sh", // Let this depend on otapreopt, the chroot tool and the slot script, // so we just have to mention one in a configuration. required: [ |