我在跟踪GNOME的wiki的新手指南。一切都很好,可以在向导的指挥下运行。
$ jhbuild build adwaita-icon-theme dconf glib-networking gvfs libcanberra在终端上,它给出了以下输出(只是错误部分):
Makefile:464: recipe for target 'dconf-dconf-update.o' failed
make[2]: *** [dconf-dconf-update.o] Error 1
make[2]: Leaving directory '/home/mkykadir/.cache/jhbuild/build/dconf/bin'
Makefile:387: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/mkykadir/.cache/jhbuild/build/dconf'
Makefile:327: recipe for target 'all' failed
make: *** [all] Error 2
*** Error during phase build of dconf: ########## Error running make -j 3 *** [23/30]
[1] Rerun phase build
[2] Ignore error and continue to install
[3] Give up on module
[4] Start shell
[5] Yapılandırmayı yeniden yükle
[6] Go to phase "dizini temizle ve baştan başla"
[7] Go to phase "configure"
[8] Go to phase "clean"
[9] Go to phase "distclean"
seçim:我尝试了1,4和6选项,但他们并没有改变情况。我在双核机器上使用Ubuntu。
发布于 2017-03-25 14:24:39
我通过详细查看终端输出找出了这个问题。在输出中,它给出了一个关于dconf-update.c的错误,这是一些语法错误。在我的系统中,代码文件在~/jhbuild/checkout/dconf/bin中,错误是由
catch0_g_fıle_error如您所见,Vala解释器将不属于ASCII字符而不是i的ı放在Vala解释器中,我用文本编辑器在源代码中搜索fıle,并使用i's更改了ı's,并选择了选项1(重新运行阶段构建),并且它成功了。
https://askubuntu.com/questions/895793
复制相似问题