User: adrian
Date: 06/02/11 20:32:02
Modified: xemacsweb ChangeLog Makefile
Log:
xemacsweb: Fix test for index directory
-------------------- ChangeLog entries follow: --------------------
ChangeLog addition:
2006-02-11 Adrian Aichner <adrian(a)xemacs.org>
* Makefile (namazu-re-index): Fix test for index directory.
Revision Changes Path
1.249 +4 -0 XEmacs/xemacsweb/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/ChangeLog,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -p -r1.248 -r1.249
--- ChangeLog 2006/02/11 19:14:23 1.248
+++ ChangeLog 2006/02/11 19:32:01 1.249
@@ -1,5 +1,9 @@
2006-02-11 Adrian Aichner <adrian(a)xemacs.org>
+ * Makefile (namazu-re-index): Fix test for index directory.
+
+2006-02-11 Adrian Aichner <adrian(a)xemacs.org>
+
* Makefile (namazu-re-index): Fix syntax in shell command.
2006-02-11 Adrian Aichner <adrian(a)xemacs.org>
1.55 +1 -1 XEmacs/xemacsweb/Makefile
Index: Makefile
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/Makefile,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -p -r1.54 -r1.55
--- Makefile 2006/02/11 19:14:23 1.54
+++ Makefile 2006/02/11 19:32:01 1.55
@@ -103,7 +103,7 @@ validate-time-stamp: $(HTML_FILES)
# unless they are newer than the associated template.
namazu-re-index: FORCE
touch index.html
- if test -n "$(NAMAZU_INDEX_DIR)" -a -f "$(NAMAZU_INDEX_DIR)"; then
\
+ if test -n "$(NAMAZU_INDEX_DIR)" -a -d "$(NAMAZU_INDEX_DIR)"; then
\
$(MKNMZ) --output-dir=$(NAMAZU_INDEX_DIR) . ; \
fi;