QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 611|回复: 0

为什么找不到make?

[复制链接]
发表于 2004-9-29 10:23:18 | 显示全部楼层 |阅读模式
在makefile中我这么写:
SUBDIRS        = up
all:

        for i in $(SUBDIRS) ; do        \
        ( cd $$i ; $(MAKE) ) ;                \
        done
make时,出现:make:make:command can‘t find。
要改为下面这样才可以:
SUBDIRS        = up
all:

        for i in $(SUBDIRS) ; do        \
        ( cd $$i ; /usr/bin/$(MAKE) ) ;                \
        done
为什么呢?
谢谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-5 22:39 , Processed in 0.052415 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表