Bug 13171 - make qt5base error
Summary: make qt5base error
Status: RESOLVED MOVED
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: 2020.02
Hardware: Other Linux
: P5 normal
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-08-28 10:17 UTC by jack
Modified: 2024-06-15 14:55 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!