应该是老大们疏忽了
make 以后的 bbs2www/Makefile中的
if test no="yes"; then \
if test '!' -d ; then mkdir ; fi; \
cp wap/*.php ; \
fi;
应该是
if test no="yes"; then \
if test '!' -d ; then mkdir ; fi; \
cp wap/*.php /usr/local/www/htdocs/wap; \
fi;
我的web根目录是/usr/local/www/htdocs/
:)
【 在 houzl (无名之枫) 的大作中提到: 】
: make install时居然出现下面的错误
: ----------------------------------------------------------------------
: cp: copying multiple files, but last argument `wap/wpt.php' is not a directory
: ...................
--
FROM 202.115.112.*