Bug 13171

Summary: make qt5base error
Product: buildroot Reporter: jack <540915622>
Component: OtherAssignee: unassigned
Status: RESOLVED MOVED    
Severity: normal CC: buildroot, yann.morin.1998
Priority: P5    
Version: 2020.02   
Target Milestone: ---   
Hardware: Other   
OS: Linux   
Host: Target:
Build:

Description jack 2020-08-28 10:17:34 UTC
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
Comment 1 Peter Seiderer 2020-09-01 16:02:43 UTC
(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?
Comment 2 Yann E. MORIN 2024-06-15 14:55:00 UTC
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!