My version of make ran into errors.
Makefile:431: *** mixed implicit and normal rules. Stop.
I found this fix on LunuxQuestions:
" Seems newer versions of make don't like lines like: Code:
config %config: scripts_basic outputmakefile FORCE
just changed them to: Code:
%config: scripts_basic outputmakefile FORCE "
It occurs once more in the busybox makefile. After changing it worked fine.
More information about formatting options
Siguenos en:
Official Distributors of:
¿Como funcionan?
ver todos >>
Error compiling busybox
My version of make ran into errors.
Makefile:431: *** mixed implicit and normal rules. Stop.
I found this fix on LunuxQuestions:
"
Seems newer versions of make don't like lines like:
Code:
config %config: scripts_basic outputmakefile FORCE
just changed them to:
Code:
%config: scripts_basic outputmakefile FORCE
"
It occurs once more in the busybox makefile. After changing it worked fine.