diff options
-rw-r--r-- | help/ChangeLog | 4 | ||||
-rw-r--r-- | help/sgmldocs.make | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/help/ChangeLog b/help/ChangeLog index f707b7adb0..fcf95f70e7 100644 --- a/help/ChangeLog +++ b/help/ChangeLog @@ -1,3 +1,7 @@ +2001-08-22 Peter Williams <peterw@ximian.com> + + * sgmldocs.make: Oops, we need to take the basename too. + 2001-08-22 Aaron Weber <aaron@ximian.com> * C/usage-mail.sgml: Removed NNTP docs. Improved IMAP docs. IMAP diff --git a/help/sgmldocs.make b/help/sgmldocs.make index ba491eb098..fee6bc4231 100644 --- a/help/sgmldocs.make +++ b/help/sgmldocs.make @@ -50,7 +50,8 @@ omf: omf_timestamp omf_timestamp: $(omffile) -for file in $(srcdir)/$(omffile); do \ - scrollkeeper-preinstall $(docdir)/$(docname).sgml $$file $(omf_dir)/$$file; \ + basefile=`echo $$file | sed -e 's,^.*/,,'`; \ + scrollkeeper-preinstall $(docdir)/$(docname).sgml $$file $(omf_dir)/$$basefile; \ done touch omf_timestamp |