diff options
Diffstat (limited to 'help/sgmldocs.make')
-rw-r--r-- | help/sgmldocs.make | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/help/sgmldocs.make b/help/sgmldocs.make index 1dca7e7fc5..1cd9eb3af4 100644 --- a/help/sgmldocs.make +++ b/help/sgmldocs.make @@ -51,7 +51,7 @@ omf: omf_timestamp omf_timestamp: $(omffile) -for file in $(srcdir)/$(omffile); do \ basefile=`echo $$file | sed -e 's,^.*/,,'`; \ - scrollkeeper-preinstall $(docdir)/$(docname).sgml $$file $(omf_dir)/$$basefile; \ + scrollkeeper-preinstall $(docdir)/index.html $$file $(omf_dir)/$$basefile; \ done touch omf_timestamp @@ -93,7 +93,12 @@ app-dist-hook: index.html install-data-am: index.html omf -$(mkinstalldirs) $(DESTDIR)$(docdir)/stylesheet-images -$(mkinstalldirs) $(DESTDIR)$(docdir)/figures - -cp $(srcdir)/$(sgml_files) $(DESTDIR)$(docdir) + -$(mkinstalldirs) $(DESTDIR)$(docdir)/sgml + + -for file in $(sgml_files); do \ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(docdir)/sgml ; \ + done + -for file in $(srcdir)/$(docname)/*.html $(srcdir)/$(docname)/*.css; do \ basefile=`echo $$file | sed -e 's,^.*/,,'`; \ $(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/$$basefile; \ |