Skip to content

Commit

Permalink
extract-utils: Use LOCAL_VENDOR_FILE instead of LOCAL_PROPRIETARY_FILE
Browse files Browse the repository at this point in the history
* Oreo expects VNDK compatible files to be listed as LOCAL_VENDOR_FILE,
  not LOCAL_PROPRIETARY_FILE.

Change-Id: Ia2384c4f3ab3a99b79df52c796c53dc25a0f4a88
  • Loading branch information
intervigilium committed Feb 26, 2018
1 parent 1fdbf7a commit 5bc3c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/tools/extract_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ function write_packages() {
printf 'LOCAL_PRIVILEGED_MODULE := true\n'
fi
if [ "$VENDOR_PKG" = "true" ]; then
printf 'LOCAL_PROPRIETARY_MODULE := true\n'
printf 'LOCAL_VENDOR_MODULE := true\n'
fi
printf 'include $(BUILD_PREBUILT)\n\n'
done
Expand Down

0 comments on commit 5bc3c84

Please sign in to comment.