|
直接emerge xmule,wxGTK是安装了2.6.0-r1,进到/usr/bin下有wx-config,wx-config-2.6,wxrc,wxrc-2.6这几个相关的文件.在解xmule包的时候发生错误:
>>> Source unpacked.
!!! set-wxconfig: Error: Can't find normal or debug version:
!!! set-wxconfig: /usr/bin/wxgtk2-2.4-config not found
!!! set-wxconfig: /usr/bin/wxgtk2d-2.4-config not found
在/usr/bin/wx-config里找到一个这样的shell function,不知道是不是和这个错误相关,应该怎么去改,对shell不大懂.
# find_legacy_configs
# Returns a list of configs installed by wx2.4 releases.
find_legacy_configs()
{
(
cd "$prefix/bin" &&
{
ls wx*-2.4-config | grep -v ^wxbase
ls wx*-2.4-config | grep ^wxbase
}
) 2> /dev/null
}
|
|