diff options
-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 ; \ |