From 9bf0973c2ab3872023ad580d10b93e21786dc687 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Fri, 24 Jul 2020 16:02:56 +0100 Subject: [PATCH] ensure newly built tools on front of path --- build-devkit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-devkit.sh b/build-devkit.sh index a088840..66238ea 100755 --- a/build-devkit.sh +++ b/build-devkit.sh @@ -122,7 +122,7 @@ export MAKE # Add installed devkit to the path, adjusting path on minsys #--------------------------------------------------------------------------------- TOOLPATH=$(echo $INSTALLDIR | sed -e 's/^\([a-zA-Z]\):/\/\1/') -export PATH=$PATH:$TOOLPATH/$package/bin +export PATH=$TOOLPATH/$package/bin:$PATH CROSS_PARAMS="--build=`./config.guess`"