diff options
author | Chris Demetriou <cgd@broadcom.com> | 2003-05-03 22:10:45 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@broadcom.com> | 2003-05-03 22:10:45 +0000 |
commit | 44272ea028d3bd9f9ae2948775855597683c4ea9 (patch) | |
tree | 932d53910f0b80d27429f3ee390aecdb4a9d541d | |
parent | a5477e3a85d778363a7469b44c19baccdc1e5695 (diff) | |
download | cygnal-44272ea028d3bd9f9ae2948775855597683c4ea9.tar.gz cygnal-44272ea028d3bd9f9ae2948775855597683c4ea9.tar.bz2 cygnal-44272ea028d3bd9f9ae2948775855597683c4ea9.zip |
2003-05-03 Chris Demetriou <cgd@broadcom.com>
2003-04-29 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* Makefile.tpl (MAKEINFOFLAGS): Use --no-split instead of
--split-size.
* Makefile.in: Regenerate.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | Makefile.tpl | 4 |
3 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2003-05-03 Chris Demetriou <cgd@broadcom.com> + + 2003-04-29 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + * Makefile.tpl (MAKEINFOFLAGS): Use --no-split instead of + --split-size. + * Makefile.in: Regenerate. + 2003-04-27 Daniel Jacobowitz <drow@mvista.com> * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl, diff --git a/Makefile.in b/Makefile.in index 754329ea2..561dc7612 100644 --- a/Makefile.in +++ b/Makefile.in @@ -203,8 +203,8 @@ USUAL_MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \ # This just becomes part of the MAKEINFO definition passed down to # sub-makes. It lets flags be given on the command line while still # using the makeinfo from the object tree. -# (Default to avoid splitting info files by setting the threshold high.) -MAKEINFOFLAGS = --split-size=5000000 +# (Default to avoid splitting info files.) +MAKEINFOFLAGS = --no-split EXPECT = `if [ -f $$r/expect/expect ] ; \ then echo $$r/expect/expect ; \ diff --git a/Makefile.tpl b/Makefile.tpl index 018f18f5d..571fa42e1 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -206,8 +206,8 @@ USUAL_MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \ # This just becomes part of the MAKEINFO definition passed down to # sub-makes. It lets flags be given on the command line while still # using the makeinfo from the object tree. -# (Default to avoid splitting info files by setting the threshold high.) -MAKEINFOFLAGS = --split-size=5000000 +# (Default to avoid splitting info files.) +MAKEINFOFLAGS = --no-split EXPECT = `if [ -f $$r/expect/expect ] ; \ then echo $$r/expect/expect ; \ |