免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 25159 | 回复: 9
打印 上一主题 下一主题

dangling symlink是什么东东? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-17 18:02 |只看该作者 |倒序浏览
我想安装MULTIGET,下载了源代码包,执行configure时,提示
[root@localhost multiget]# ls
aclocal.m4      config.log     INSTALL              libtool          newicons
AUTHORS         config.status  install-sh           ltmain.sh        NEWS
autogen.sh      config.sub     intltool-extract     Makefile         po
autom4te.cache  configure      intltool-extract.in  Makefile.am      README
ChangeLog       configure.ac   intltool-merge       Makefile.in      src
config.guess    COPYING        intltool-merge.in    missing          stamp-h1
config.h        depcomp        intltool-update      mkinstalldirs    TODO.tasks
config.h.in     icons          intltool-update.in   multiget.anjuta
[root@localhost multiget]# ./configure --prefix=/opt/gtk
configure: error: cannot find install-sh or install.sh in "." "./.." "./../.."
[root@localhost multiget]# chmod 755 install-sh
chmod: cannot operate on dangling symlink “install-sh”


事实上install-sh是有的,只不过不能操作,不知什么原因。
请大虾指点一下。谢谢。

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2008-05-17 21:18 |只看该作者
install-sh 是一个软链接,可其对应的目的文件已经不在了。

论坛徽章:
0
3 [报告]
发表于 2008-05-18 11:28 |只看该作者
原帖由 MMMIX 于 2008-5-17 21:18 发表
install-sh 是一个软链接,可其对应的目的文件已经不在了。



多谢MMMIX!

靠,从sourceforge上下的具体会不全

论坛徽章:
0
4 [报告]
发表于 2008-05-18 13:20 |只看该作者
我又查了一下,命令
[root@localhost multiget]# ls -all
总计 2056
-rw-r--r-- 1 1000 1000   1518 2007-10-25 configure.ac
lrwxrwxrwx 1 1000 1000     31 05-19 01:41 COPYING -> /usr/share/automake-1.9/COPYING
-rw-r--r-- 1 1000 1000    377 2007-10-25 .cvsignore
lrwxrwxrwx 1 1000 1000     31 05-19 01:41 depcomp -> /usr/share/automake-1.9/depcomp
drwxr-xr-x 2 1000 1000   4096 05-19 01:41 icons
lrwxrwxrwx 1 1000 1000     31 05-19 01:41 INSTALL -> /usr/share/automake-1.9/INSTALL
lrwxrwxrwx 1 1000 1000     34 05-19 01:41 install-sh -> /usr/share/automake-1.9/install-sh

原来是影射到/usr/share/automake-1.9目录的。
于是我即时去到/usr/share/目录下,发现有automake-1.4,automake-1.5,automake-1.6,automake-1.7,automake-1.10
唯独没有automake-1.8和automake-1.9。于是我复制一个automake-1.10,并将它改名为automake-1.9。
之后:
[root@localhost multiget]# ./configure --prefix /opt/multiget
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking wxWidgets version... ./configure: line 5813: wx-config: command not found
not found
configure: error: wxWidgets is required. Try --with-wx-config.

需要wxWidgets这个东东。
请问哪里可以下载到
automake-1.9 ?

论坛徽章:
0
5 [报告]
发表于 2008-05-18 13:30 |只看该作者

回复 #4 javasn 的帖子

找到下载地址了:http://ftp.gnu.org/gnu/automake/
下载中。呵呵

论坛徽章:
0
6 [报告]
发表于 2008-05-18 13:42 |只看该作者

回复 #5 javasn 的帖子

原来还是不可以,GNU下的automake-1.9里面都没有install-sh

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
7 [报告]
发表于 2008-05-18 14:37 |只看该作者
不要自己编译了,直接安装二进制包吧。

论坛徽章:
0
8 [报告]
发表于 2008-05-18 20:54 |只看该作者
原帖由 MMMIX 于 2008-5-18 14:37 发表
不要自己编译了,直接安装二进制包吧。


请问哪里有二进制安装包。

论坛徽章:
0
9 [报告]
发表于 2008-05-18 21:36 |只看该作者
sourceforge 上有二进制版本下载。

论坛徽章:
0
10 [报告]
发表于 2008-05-22 14:01 |只看该作者
就是的呀,再下个就是的,依赖关系很掺杂的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP