aboutsummaryrefslogtreecommitdiff
path: root/libs/git
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2017-05-31 23:55:53 +0000
committerGogs <gogitservice@gmail.com>2017-05-31 23:55:53 +0000
commit2271147a9c5a80afa9fa81a4eacafcaa1d840258 (patch)
treed227d0fb53dc6cfcfb2260190294f5e474332d77 /libs/git
parenta36b0c7ccfad15941905185557cc4129f2f8a860 (diff)
parent1ea8d09af262ddeed87acf5916cec42d9a002da1 (diff)
downloadlibrebootfr-2271147a9c5a80afa9fa81a4eacafcaa1d840258.tar.gz
librebootfr-2271147a9c5a80afa9fa81a4eacafcaa1d840258.zip
Merge branch 'build-system-merge' of kragle/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-xlibs/git36
1 files changed, 18 insertions, 18 deletions
diff --git a/libs/git b/libs/git
index e64173d9..a750be32 100755
--- a/libs/git
+++ b/libs/git
@@ -226,29 +226,29 @@ git_project_check() {
}
git_project_patch_recursive() {
- local project=$1
- local repository=$2
- local branch=$3
- local path=$4
+ local project="$1"
+ local repository="$2"
+ local branch="$3"
+ local path="${4:-.}"
- local repository_path=$( git_project_repository_path "$repository" )
- local project_path=$( project_path "$project" )
- local patches_path="$project_path/$PATCHES/$path/$WILDDOTPATCH"
- local patch_path
+ local repository_path="$(git_project_repository_path "${repository}")"
+ local project_path="$(project_path "${project}")"
+ local patches_path="${project_path}/${PATCHES}/${path}"
- if ! [ -z "$path" ] && [ "$path" != "." ]
- then
- git_project_patch_recursive "$project" "$repository" "$branch" "$( dirname "$path" )"
+ if ! [[ -d "${patches_path}" ]]; then
+ return
fi
- path_wildcard_expand "$patches_path" | while read patch_path
- do
- if ! [ -f "$patch_path" ]
- then
- continue
- fi
+ if [[ "${path}" != "." ]]; then
+ git_project_patch_recursive "${project}" "${repository}" "${branch}" "$(dirname "${path}")"
+ fi
- git_patch "$repository_path" "$branch" "$patch_path"
+ for patch in "${patches_path}"/[!.]*.{patch,diff}; do
+ if [[ "${patch##*.}" == "patch" ]]; then
+ git_patch "${repository_path}" "${branch}" "${patch}"
+ else
+ diff_patch_file "${repository_path}" "${patch}"
+ fi
done
}