Skip to content
Snippets Groups Projects
Commit be3ce863 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "patch files are now arranged in lexical order to ensure a consistent md5sum"

parents d728fcb3 f21df988
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ B2G_PATCH_DIRS=${B2G_PATCH_DIRS_OVERRIDE:-device/qcom/b2g_common/patch}
__tree_md5sum()
{
(
FILELIST="$(find $@ -type f ! -path "*/.*" 2>/dev/null || true) ${B2G_HASHED_FILES}"
FILELIST="$(find $@ -type f ! -path "*/.*" 2>/dev/null | sort) ${B2G_HASHED_FILES}"
if [[ -n "${B2G_USE_REPO}" ]]; then
${REPO} manifest -r -o - 2>/dev/null
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment