使用 make all-recursive 时出现权限被拒绝错误?

使用 make all-recursive 时出现权限被拒绝错误?

我正在使用 autotools 和 GNU make 构建 C 库,有一行

all: config.h
    $(MAKE) $(AM_MAKEFLAGS) all-recursive

在 Makefile 中,我编译时出错

make  all-recursive
make: make: Permission denied
make: *** [Makefile:427: all] Error 127

怎么了?

相关内容