我在工作中配置了一个非常简单的RHEL 4.4;例如,它没有安装java或gcc。
我已按照this guide成功在另一个VM(RHEM 4.6)上安装python 2.7.6。但是在这个新的虚拟机上,如果没有出现此错误,我无法make
:
gcc -pthread -c -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I. -IInclude -I./Include -DPy_BUILD_CORE \
-DSVNVERSION="\"`LC_ALL=C echo Unversioned directory`\"" \
-DHGVERSION="\"`LC_ALL=C `\"" \
-DHGTAG="\"`LC_ALL=C `\"" \
-DHGBRANCH="\"`LC_ALL=C `\"" \
-o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
gcc.orig: directory": No such file or directory
<command-line>: warning: missing terminating " character
./Modules/getbuildinfo.c: In function â_Py_svnversionâ:
./Modules/getbuildinfo.c:63: error: missing terminating " character
./Modules/getbuildinfo.c:63: error: expected expression before â;â token
make: *** [Modules/getbuildinfo.o] Error 1
我尝试了此无关的bug报告中的建议:
SVNVERSION="Unversioned directory"
./configure
make
但收到同样的错误。
我在超级用户上看到了这个问题,建议检查svnversion
目录中Modules
命令的输出,但我没有svn
或{{1}在这台机器上。它还建议编辑svnversion
中的_PY_svnversion
函数,但我收到了同样的错误。
有什么想法吗?
答案 0 :(得分:5)
好的我在我的案例中找到了答案:
问题configure
将创建新的Makefile
使用vi。
Makefile
搜索SVNVERSION并将其设置为
SVNVERSION= ""
然后
make
就可以了。