Skip to content

Commit 8d3774b

Browse files
authored
Merge pull request #9788 from nutthawit/fix-fetch-gnu-path-suggestion
build-gnu.sh: correct path suggestion for fetch-gnu.sh
2 parents e70c5a4 + 63a6d80 commit 8d3774b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/build-gnu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ path_GNU="$("${READLINK}" -fm -- "${path_GNU:-${path_UUTILS}/../gnu}")"
3737
if test ! -f "${path_GNU}/configure"; then
3838
echo "Could not find the GNU coreutils (expected at '${path_GNU}')"
3939
echo "Download them to the expected path:"
40-
echo " (cd '${path_GNU}' && fetch-gnu.sh ) "
40+
echo " (mkdir -p '${path_GNU}' && cd '${path_GNU}' && bash '${path_UUTILS}/util/fetch-gnu.sh')"
4141
echo "You can edit fetch-gnu.sh to change the tag"
4242
exit 1
4343
fi

0 commit comments

Comments
 (0)