From 093c4a367dc82e0c0690d9fba775bbcf5e7f3701 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 22 May 2024 23:08:13 +0100 Subject: git.sh: move link_crossgcc to end of file link_crossgcc is called after git_am_patches, so put it after ward Signed-off-by: Leah Rowe --- include/git.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'include/git.sh') diff --git a/include/git.sh b/include/git.sh index 3b3aeb32..e7dfe591 100755 --- a/include/git.sh +++ b/include/git.sh @@ -122,15 +122,6 @@ prep_submodules() done < "$tmpdir/modules" } -link_crossgcc() -{ - ( - cd "$tmpgit/util" || $err "prep $1: !cd $tmpgit/util" - rm -Rf crossgcc || $err "prep $1: !rm xgcc" - ln -s "../../$xtree/util/crossgcc" crossgcc || $err "$1: !xgcc link" - ) || $err "$1: !xgcc link" -} - git_am_patches() { for _patch in "$2/"*; do @@ -142,3 +133,12 @@ git_am_patches() git_am_patches "$1" "$_patches"; continue done } + +link_crossgcc() +{ + ( + cd "$tmpgit/util" || $err "prep $1: !cd $tmpgit/util" + rm -Rf crossgcc || $err "prep $1: !rm xgcc" + ln -s "../../$xtree/util/crossgcc" crossgcc || $err "$1: !xgcc link" + ) || $err "$1: !xgcc link" +} -- cgit v1.2.1