Use -f' instead of -e' so installation of topic.dat works on non-GNU

* sgmldocs.make: Use `-f' instead of `-e' so installation of
topic.dat works on non-GNU systems too.

svn path=/trunk/; revision=15487
This commit is contained in:
Ettore Perazzoli
2002-01-27 17:23:51 +00:00
parent 79a377ddf2
commit 8523c926ff
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-01-27 Ettore Perazzoli <ettore@ximian.com>
* sgmldocs.make: Use `-f' instead of `-e' so installation of
topic.dat works on non-GNU systems too.
2002-01-17 Aaron Weber <aaron@ximian.com>
* C/apx-gloss.sgml: typos.
@ -64,7 +69,6 @@
* C/usage-exchange.sgml: Added a <sect1> that discusses features of Connector
>>>>>>> 1.180
2001-12-18 Aaron Weber <aaron@ximian.com>
* C/usage-exchange.sgml: add notes about server requirements.

View File

@ -86,7 +86,7 @@ app-dist-hook: index.html
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
cp $$file $(distdir)/$(docname)/stylesheet-images/$$basefile ; \
done
-if [ -e topic.dat ]; then \
-if [ -f topic.dat ]; then \
cp $(srcdir)/topic.dat $(distdir); \
fi
@ -111,7 +111,7 @@ install-data-am: index.html omf
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/stylesheet-images/$$basefile; \
done
-if [ -e $(srcdir)/topic.dat ]; then \
-if [ -f $(srcdir)/topic.dat ]; then \
$(INSTALL_DATA) $(srcdir)/topic.dat $(DESTDIR)$(docdir); \
fi