summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTimur Bakeyev <mc@bat.ru>1999-06-15 14:03:38 +0000
committerTimur I. Bakeyev <timur@src.gnome.org>1999-06-15 14:03:38 +0000
commitb8cdd9e090c74fb1668ef064ea24dbc785055ee8 (patch)
treeda8c2e24600ac5b84b96b6081d1913bd92aa47fe /doc
parentcad4a8da0d6055a15c0d62b713374379a461d281 (diff)
downloadlibgtop-b8cdd9e090c74fb1668ef064ea24dbc785055ee8.tar.gz
Force `auto-macros.texi' to be created in $(srcdir), as, otherwise,
Tue Jun 15 15:59:50 1999 Timur Bakeyev <mc@bat.ru> * Makefile.am: Force `auto-macros.texi' to be created in $(srcdir), as, otherwise, makeinfo is unable to find it, if srcdir != builddir. That's a buggy solution, as spoils srcdir, but, as libgtop.info also created in srcdir - this is acceptable. Both SHOULD be fixed!
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog7
-rw-r--r--doc/Makefile.am10
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index b6cb3643..2e607fac 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jun 15 15:59:50 1999 Timur Bakeyev <mc@bat.ru>
+
+ * Makefile.am: Force `auto-macros.texi' to be created in $(srcdir),
+ as, otherwise, makeinfo is unable to find it, if srcdir != builddir.
+ That's a buggy solution, as spoils srcdir, but, as libgtop.info also
+ created in srcdir - this is acceptable. Both SHOULD be fixed!
+
1999-05-28 Martin Baulig <baulig@Stud.Informatik.Uni-Trier.DE>
* internals.texi: New file documenting LibGTop internals.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index c46457da..2e3b1e0b 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -33,11 +33,11 @@ auto-macros.texi: auto-macros.texi.in Makefile
-e 's#\%libgtop_use_machine_h\%#$(libgtop_use_machine_h)#g' \
-e 's#\%libgtop_guile_found\%#$(libgtop_guile_found)#g' \
-e 's#\%libgtop_want_examples\%#$(libgtop_want_examples)#g' \
- < $(srcdir)/auto-macros.texi.in > auto-macros.tmp
- echo '@c Set this if this is LibGTop 1.1.x' >> auto-macros.tmp
+ < $(srcdir)/auto-macros.texi.in > $(srcdir)/auto-macros.tmp
+ echo '@c Set this if this is LibGTop 1.1.x' >> $(srcdir)/auto-macros.tmp
if [ $(LIBGTOP_VERSION_CODE) -ge 1001000 ] ; then \
- echo '@set LIBGTOP-1-1' >> auto-macros.tmp ; \
+ echo '@set LIBGTOP-1-1' >> $(srcdir)/auto-macros.tmp ; \
else \
- echo '@clear LIBGTOP-1-1' >> auto-macros.tmp ; \
+ echo '@clear LIBGTOP-1-1' >> $(srcdir)/auto-macros.tmp ; \
fi
- mv auto-macros.tmp auto-macros.texi
+ mv $(srcdir)/auto-macros.tmp $(srcdir)/auto-macros.texi