Makefile:1279: *** mixed implicit and normal rules.
今天在编译busybox1.16的时候,执行make命令,报错,错误信息:1279 “mixed implicit and normal rules”,翻译为中文:混合的和隐含普通规则。起初以为是busybox包的问题,从官网上下载了低版本1.13,报同样的错误,google后发现,是由于我的系统的make工具太新(系统:fedora14),make的旧版规则已经无法兼容新版。按照以下方式,问题得到解决:
在makefile中将1279行代码
config %config: scripts_basic outputmakefile FORCE
改:
%config: scripts_basic outputmakefile FORCE将1279行代码:/ %/: prepare scripts FORCE(错)