* doc/Makefile.am (fake-doc): Create-or-touch user/latex.
---
milena/ChangeLog | 6 ++++++
milena/doc/Makefile.am | 8 +++-----
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 35115e2..9059ac9 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -6,6 +6,12 @@
2009-06-25 Roland Levillain <roland(a)lrde.epita.fr>
+ Fix Make rule `fake-doc'.
+
+ * doc/Makefile.am (fake-doc): Create-or-touch user/latex.
+
+2009-06-25 Roland Levillain <roland(a)lrde.epita.fr>
+
* doc/Makefile.am: Wrap long lines.
2009-06-25 Roland Levillain <roland(a)lrde.epita.fr>
diff --git a/milena/doc/Makefile.am b/milena/doc/Makefile.am
index ebec33c..47064b3 100644
--- a/milena/doc/Makefile.am
+++ b/milena/doc/Makefile.am
@@ -292,11 +292,9 @@ fake-doc:
touch Doxyfile_user
touch Doxyfile_user_pdf
test -d user || mkdir user
- if test -d $(USER_REFMAN_HTML); then \
- touch $(USER_REFMAN_HTML); \
- else \
- mkdir $(USER_REFMAN_HTML); \
- fi
+ for d in $(USER_REFMAN_HTML) user/latex; do \
+ if test -d $$d; then touch $$d; else mkdir $$d; fi; \
+ done
touch $(USER_REFMAN_PDF)
# The converse of the previous rule, voiding the timestamps.
--
1.6.3.1