Control: tags -1 + patch
I suspect the following patch solve the issue:
diff --git a/Makefile.am b/Makefile.am
index 5ec4213..bd106ba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -51,7 +51,6 @@ setup-win32:
distclean-local:
if test $(srdcir) = .; then :; else \
rm -f ChangeLog; \
- rm -f NEWS; \
fi
ChangeLog:
@@ -69,6 +68,7 @@ ChangeLog:
fi
NEWS: data/appdata/*.appdata.xml
+ rm -f NEWS; \
$(AM_V_GEN) \
if test -e $(APPSTREAM_UTIL); then \
$(APPSTREAM_UTIL) appdata-to-news $^ > $@; \
The issue is that NEWS is generated and removed in 'make distclean', but also
need to exist on the second invocation.
--
Happy hacking
Petter Reinholdtsen