diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-01-28 01:23:51 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-01-28 01:23:51 +0800 |
commit | 8523c926ffcf1b29327414c9cfa683cae6271a73 (patch) | |
tree | d8be986e56a86be72f19c96247c738b72246c8de /help/sgmldocs.make | |
parent | 79a377ddf20574b03d02f93fc85f542455b12744 (diff) | |
download | gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar.gz gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar.bz2 gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar.lz gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar.xz gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.tar.zst gsoc2013-evolution-8523c926ffcf1b29327414c9cfa683cae6271a73.zip |
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
Diffstat (limited to 'help/sgmldocs.make')
-rw-r--r-- | help/sgmldocs.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/help/sgmldocs.make b/help/sgmldocs.make index 1cd9eb3af4..2bd7c5dc1e 100644 --- a/help/sgmldocs.make +++ b/help/sgmldocs.make @@ -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 |