summaryrefslogtreecommitdiff
path: root/Docs/Makefile.am
diff options
context:
space:
mode:
authorunknown <jcole@tetra.spaceapes.com>2001-01-20 04:10:42 -0600
committerunknown <jcole@tetra.spaceapes.com>2001-01-20 04:10:42 -0600
commite9ee2aa9cb881d3dd1738e3f82d452bd3469837f (patch)
tree311ca80b4abd7b8769e537343d974166c27a95d8 /Docs/Makefile.am
parent63383b77512a74a01d93e7fb55fdbafe56a5384e (diff)
downloadmariadb-git-e9ee2aa9cb881d3dd1738e3f82d452bd3469837f.tar.gz
Docs/Makefile.am
Fixed a small bug.. comment was being overwritten. Docs/Support/test-make-manual Will now fix it's own dependencies.. includes checking out files and creating it's own include.texi. Docs/Makefile.am: Fixed small bug, comment was not being included. ;) Docs/Support/test-make-manual: test-make-manual will now fix it's own dependencies. This is useful for those of us who don't have all files in the repository checked out all the time.
Diffstat (limited to 'Docs/Makefile.am')
-rw-r--r--Docs/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/Makefile.am b/Docs/Makefile.am
index 4f61d93c0e5..3d8c3e39905 100644
--- a/Docs/Makefile.am
+++ b/Docs/Makefile.am
@@ -39,8 +39,8 @@ paper: manual_a4.ps manual_letter.ps $(PDFMANUAL)
# The Makefile contains the previous version so we can not use that
include.texi: ../configure.in
- echo -n "@c This file is autogenerated by the Makefile" > $@
- echo -n "@set mysql_version " > $@
+ echo "@c This file is autogenerated by the Makefile" > $@
+ echo -n "@set mysql_version " >> $@
grep "AM_INIT_AUTOMAKE(mysql, " ../configure.in | \
sed -e 's;AM_INIT_AUTOMAKE(mysql, ;;' -e 's;);;' >> $@
echo -n "@set default_port " >> $@