I hit this error message while trying to build gnote using GNU Autotools.
I had first run:
$ 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
Neither po/Makefile.in.in
nor po/Makefile.in
exist in the source tree that I downloaded.
Yet configure
needs to make this po/Makefile
, as called for in the root Makefile.am
in this line:
SUBDIRS = data src po help
Where do I get, or how do I make, po/Makefile.in.in
?