Using buildroot 2020.2 version will have the error in the picture, when I use 2019.02 there is no such problem. Through research, it is found that only line 802 of the \output\build\qt5base-5.12.2\configure file needs to be modified to (cd "$outpath/qmake"; $MAKE) || exit 2 can also be compiled and passed
(In reply to jack from comment #0) Sorry, no picture (of the failure) attached... Could you provide a .config or defconfig file of the failing buildroot configuration (on which host system)? Could you provide the failure message (and some lines around) simple by copying the message? Do you mean the following change to configure (removing the double quotes): if [ "$OPT_VERBOSE" = yes ]; then # Show the output of make - (cd "$outpath/qmake"; "$MAKE") || exit 2 + (cd "$outpath/qmake"; $MAKE) || exit 2 else # Hide the output of make If this is fixing your problem, this would mean that 'MAKE' is not single command in your case... Could you provide an link to your 'research' results?
Thank you for your report. The issue tracker for the Buildroot project has been moved to the Gitlab.com issue tracker: https://gitlab.com/buildroot.org/buildroot/-/issues We are taking this opportunity to close old issues in this old tracker. If you believe your issue is still relevant, please open one in the new issue tracker. Thank you!