【发布时间】:2020-11-21 20:52:46
【问题描述】:
我在尝试使用 GNU Autotools 构建 gnote 时遇到此错误消息。
我第一次跑步:
$ git clean -xf # to clean the tree of untracked files, then
$ autoreconf # to create the script named `configure`, and finally
$ ./configure # to check my system, and create Makefiles from their templates
我下载的源代码树中既不存在po/Makefile.in.in 也不存在po/Makefile.in。
然而configure 需要创建这个po/Makefile,正如在这一行的根Makefile.am 中所要求的那样:
SUBDIRS = data src po help
我在哪里获得,或者我如何制作,po/Makefile.in.in?
【问题讨论】:
标签: configure autotools automake po