summaryrefslogtreecommitdiff
path: root/gtkdoc-mkhtml.in
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-03-26 21:27:14 +0000
committerDamon Chaplin <damon@src.gnome.org>2001-03-26 21:27:14 +0000
commitb0999649218bfbaa4dc3989c127220e8d50f54c3 (patch)
tree1f3d3d914b45fb2b88744e5effed35c2e887854b /gtkdoc-mkhtml.in
parent901ae101d9a9080b3504972c9bc7b6221dd837cd (diff)
downloadgtk-doc-b0999649218bfbaa4dc3989c127220e8d50f54c3.tar.gz
scan .h files as well, so macros can be documented there if desired.
2001-03-26 Damon Chaplin <damon@ximian.com> * gtkdoc-mkdb.in (ReadSourceDocumentation): scan .h files as well, so macros can be documented there if desired. * gtkdoc-mkhtml.in (gtkdocdir): use 'test -f' rather than 'test -e' which is GNU-specific.
Diffstat (limited to 'gtkdoc-mkhtml.in')
-rw-r--r--gtkdoc-mkhtml.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtkdoc-mkhtml.in b/gtkdoc-mkhtml.in
index 6a8f3a6..ff4cc31 100644
--- a/gtkdoc-mkhtml.in
+++ b/gtkdoc-mkhtml.in
@@ -20,7 +20,7 @@ prefix=@prefix@
gtkdocdir=@datadir@/gtk-doc/
# Delete the old index.sgml file, if it exists.
-if test -e index.sgml; then
+if test -f index.sgml; then
rm -f index.sgml
fi