mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 16:26:12 +08:00
* src-release (MAKEINFOFLAGS): Define.
(do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
This commit is contained in:
parent
01668fecd4
commit
e6cb2291c8
@ -1,3 +1,8 @@
|
|||||||
|
2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* src-release (MAKEINFOFLAGS): Define.
|
||||||
|
(do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
|
||||||
|
|
||||||
2006-05-14 Ben Elliston <bje@au.ibm.com>
|
2006-05-14 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* config.sub, config.guess: Update from upstream sources.
|
* config.sub, config.guess: Update from upstream sources.
|
||||||
|
11
src-release
11
src-release
@ -31,6 +31,9 @@ SHELL = /bin/sh
|
|||||||
BZIPPROG = bzip2
|
BZIPPROG = bzip2
|
||||||
MD5PROG = md5sum
|
MD5PROG = md5sum
|
||||||
|
|
||||||
|
# (Default to avoid splitting info files by setting the threshold high.)
|
||||||
|
MAKEINFOFLAGS = --split-size=5000000
|
||||||
|
|
||||||
# pwd command to use. Allow user to override default by setting PWDCMD in
|
# pwd command to use. Allow user to override default by setting PWDCMD in
|
||||||
# the environment to account for automounters. The make variable must not
|
# the environment to account for automounters. The make variable must not
|
||||||
# be called PWDCMD, otherwise the value set here is passed to make
|
# be called PWDCMD, otherwise the value set here is passed to make
|
||||||
@ -146,9 +149,11 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
|
|||||||
if [ -d $$d ]; then \
|
if [ -d $$d ]; then \
|
||||||
if [ ! -f $$d/Makefile ] ; then true ; \
|
if [ ! -f $$d/Makefile ] ; then true ; \
|
||||||
elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
|
elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
|
||||||
(cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
|
(cd $$d ; $(MAKE) MAKEINFOFLAGS="$(MAKEINFOFLAGS)" \
|
||||||
|
diststuff ) || exit 1 ; \
|
||||||
elif grep '^info:' $$d/Makefile >/dev/null ; then \
|
elif grep '^info:' $$d/Makefile >/dev/null ; then \
|
||||||
(cd $$d ; $(MAKE) info ) || exit 1 ; \
|
(cd $$d ; $(MAKE) MAKEINFOFLAGS="$(MAKEINFOFLAGS)" \
|
||||||
|
info ) || exit 1 ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
if [ -d $$d/proto-$$d.dir ]; then \
|
if [ -d $$d/proto-$$d.dir ]; then \
|
||||||
ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
|
ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
|
||||||
@ -157,7 +162,7 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
|
|||||||
fi ; \
|
fi ; \
|
||||||
else ln -s ../$$d proto-toplev/$$d ; fi ; \
|
else ln -s ../$$d proto-toplev/$$d ; fi ; \
|
||||||
done
|
done
|
||||||
cd etc && $(MAKE) info
|
cd etc && $(MAKE) MAKEINFOFLAGS="$(MAKEINFOFLAGS)" info
|
||||||
$(MAKE) distclean
|
$(MAKE) distclean
|
||||||
# Kludge for pr gdb/857. intl/Makefile.in lacks a couple
|
# Kludge for pr gdb/857. intl/Makefile.in lacks a couple
|
||||||
# of files in the distclean rule. Zack W is planning to make
|
# of files in the distclean rule. Zack W is planning to make
|
||||||
|
Loading…
x
Reference in New Issue
Block a user