瀏覽代碼

doc/doxygen: fix rule to build version.html

Nathalie Furmento 12 年之前
父節點
當前提交
3a269add3c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      doc/doxygen/Makefile.am

+ 2 - 2
doc/doxygen/Makefile.am

@@ -117,7 +117,7 @@ chapters/version.sty: $(chapters)
 	done
 
 chapters/version.html: $(chapters)
-	@-for f in $(chapters) ; do \
+	@for f in $(chapters) ; do \
                 if test -f $(top_srcdir)/doc/doxygen/$$f ; then stat --format=%Y $(top_srcdir)/doc/doxygen/$$f 2>/dev/null ; fi \
         done | sort -r | head -1 > timestamp
 	@if test -s timestamp ; then \
@@ -130,7 +130,7 @@ chapters/version.html: $(chapters)
 	else \
 		echo "Its contents was last updated on <em>unknown_date</em>." >> $(top_srcdir)/doc/doxygen/chapters/version.html;\
 	fi
-	@-for f in timestamp timestamp_updated timestamp_updated_month ; do \
+	@for f in timestamp timestamp_updated timestamp_updated_month ; do \
 		if test -f $$f ; then $(RM) $$f ; fi ;\
 	done