It seems that make runs target compat (which deletes the file “compat/column.in”) before target po/quilt.pot. This order must be reversed.
I fix it in the file tools/quilt/Makefile, replacing the line:
1 2 |
$(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" all |
with:
1 |
$(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" po/quilt.pot all |