|
|
现象:编译evolution2.4.2.1时重复出现如下信息
- cd .. \
- && CONFIG_FILES=po/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
- /bin/sh ./config.status
- config.status: creating po/Makefile.in
- config.status: executing depfiles commands
- config.status: executing default-1 commands
- config.status: executing default-2 commands
- make[2]: Leaving directory `/home/portage/portage/evolution-2.4.2.1/work/evolution-2.4.2.1/po'
- make[2]: Entering directory `/home/portage/portage/evolution-2.4.2.1/work/evolution-2.4.2.1/po'
复制代码
解决办法:
当出现上述现象时,编辑此文件:/var/tmp/portage/evolution-2.4.2.1/work/evolution-2.4.2.1/po/Makefile.in.in
237行开始如下:
- stamp-it: Makefile.in.in ../config.status POTFILES.in
- XXXX <- 238行
- XXXX <- 239行
- XXXX <- 240行
- # Tell versions [3.59,3.63) of GNU make not to export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
复制代码
删除238-240行保存文件即可.
原文: http://forums.gentoo.org/viewtopic-t-411627.html |
|