- 主题:smth 安装 wap/wpt.php 怎么会这样?
make install时居然出现下面的错误
----------------------------------------------------------------------
cp: copying multiple files, but last argument `wap/wpt.php' is not a directory
Try `cp --help' for more information.
make[3]: *** [install-data-local] Error 1
make[2]: *** [install-am] Error 2
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1
不能理解
该如何解决呢?
--
FROM 202.115.112.*
应该是老大们疏忽了
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.*
bbs2www目录应该要重新configure
你看看目录下的configure.ac和Makefile.am就应该明白了
【 在 houzl (无名之枫) 的大作中提到: 】
: 应该是老大们疏忽了
: make 以后的 bbs2www/Makefile中的
: if test no="yes"; then \
: ...................
--
FROM 128.12.181.*
能找到的所有文档都没有提到这点
:)
赫赫~最后就直接改了makefile
嘿嘿
【 在 atppp (Big Mouse) 的大作中提到: 】
: bbs2www目录应该要重新configure
: 你看看目录下的configure.ac和Makefile.am就应该明白了
--
FROM 202.115.112.*
这不用文档提吧,你cvs up之后说不定什么时候就要重新configure的
commit的人在log里面提到了最好,没提也挺正常。
【 在 houzl (无名之枫) 的大作中提到: 】
能找到的所有文档都没有提到这点
:)
赫赫~最后就直接改了makefile
嘿嘿
【 在 atppp (Big Mouse) 的大作中提到: 】
: bbs2www目录应该要重新configure
: 你看看目录下的configure.ac和Makefile.am就应该明白了
--
FROM 128.12.181.*