* libc/Makefile.am (stmp-sigset, stmp-iconvset, stmp-extra,
stmp-stdio64, stmp-posix,stmp-targetdep): Use unique temporary file names to allow for parallel installs. (CLEANFILES): Add new temporary file names. * libc/Makefile.in: Regenerate.
This commit is contained in:
parent
35c0485d2d
commit
93b103586f
@ -1,3 +1,11 @@
|
|||||||
|
2010-05-05 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
|
* libc/Makefile.am (stmp-sigset, stmp-iconvset, stmp-extra,
|
||||||
|
stmp-stdio64, stmp-posix,stmp-targetdep): Use unique temporary
|
||||||
|
file names to allow for parallel installs.
|
||||||
|
(CLEANFILES): Add new temporary file names.
|
||||||
|
* libc/Makefile.in: Regenerate.
|
||||||
|
|
||||||
2010-05-03 Corinna Vinschen <corinna@vinschen.de>
|
2010-05-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/locale/lctype.c: Include <string.h> and "setlocale.h".
|
* libc/locale/lctype.c: Include <string.h> and "setlocale.h".
|
||||||
|
@ -151,69 +151,69 @@ libc.dvi: sigset.texi extra.texi stdio64.texi posix.texi iconvset.texi \
|
|||||||
|
|
||||||
stmp-sigset: config.status
|
stmp-sigset: config.status
|
||||||
if test -n "$(LIBC_SIGNAL_LIB)"; then \
|
if test -n "$(LIBC_SIGNAL_LIB)"; then \
|
||||||
echo "@set SIGNALS" >tmp.texi; \
|
echo "@set SIGNALS" >tmp-sigset.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear SIGNALS" >tmp.texi; \
|
echo "@clear SIGNALS" >tmp-sigset.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi sigset.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-sigset.texi sigset.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
sigset.texi: stmp-sigset ; @true
|
sigset.texi: stmp-sigset ; @true
|
||||||
|
|
||||||
stmp-iconvset: config.status
|
stmp-iconvset: config.status
|
||||||
if test -n "$(NEWLIB_ICONV_LIBS)"; then \
|
if test -n "$(NEWLIB_ICONV_LIBS)"; then \
|
||||||
echo "@set ICONV" >tmp.texi; \
|
echo "@set ICONV" >tmp-iconvset.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear ICONV" >tmp.texi; \
|
echo "@clear ICONV" >tmp-iconvset.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi iconvset.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-iconvset.texi iconvset.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
iconvset.texi: stmp-iconvset ; @true
|
iconvset.texi: stmp-iconvset ; @true
|
||||||
|
|
||||||
stmp-extra: config.status
|
stmp-extra: config.status
|
||||||
if test -n "$(LIBC_EXTRA_LIB)"; then \
|
if test -n "$(LIBC_EXTRA_LIB)"; then \
|
||||||
echo "@set EXTRA" >tmp.texi; \
|
echo "@set EXTRA" >tmp-extra.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear EXTRA" >tmp.texi; \
|
echo "@clear EXTRA" >tmp-extra.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi extra.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-extra.texi extra.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
extra.texi: stmp-extra ; @true
|
extra.texi: stmp-extra ; @true
|
||||||
|
|
||||||
stmp-stdio64: config.status
|
stmp-stdio64: config.status
|
||||||
if test -n "$(LIBC_STDIO64_LIB)"; then \
|
if test -n "$(LIBC_STDIO64_LIB)"; then \
|
||||||
echo "@set STDIO64" >tmp.texi; \
|
echo "@set STDIO64" >tmp-stdio64.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear STDIO64" >tmp.texi; \
|
echo "@clear STDIO64" >tmp-stdio64.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi stdio64.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-stdio64.texi stdio64.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
stdio64.texi: stmp-stdio64 ; @true
|
stdio64.texi: stmp-stdio64 ; @true
|
||||||
|
|
||||||
stmp-posix: config.status
|
stmp-posix: config.status
|
||||||
if test -n "$(LIBC_POSIX_LIB)"; then \
|
if test -n "$(LIBC_POSIX_LIB)"; then \
|
||||||
echo "@set POSIX" >tmp.texi; \
|
echo "@set POSIX" >tmp-posix.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear POSIX" >tmp.texi; \
|
echo "@clear POSIX" >tmp-posix.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi posix.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-posix.texi posix.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
posix.texi: stmp-posix ; @true
|
posix.texi: stmp-posix ; @true
|
||||||
|
|
||||||
stmp-targetdep: force
|
stmp-targetdep: force
|
||||||
rm -f tmp.texi
|
rm -f tmp-targetdep.texi
|
||||||
targetdoc=`pwd`/tmp.texi; \
|
targetdoc=`pwd`/tmp-targetdep.texi; \
|
||||||
for d in $(SUBDIRS); do \
|
for d in $(SUBDIRS); do \
|
||||||
if test "$$d" != "."; then \
|
if test "$$d" != "."; then \
|
||||||
(cd $$d && $(MAKE) TARGETDOC=$${targetdoc} doc) || exit 1; \
|
(cd $$d && $(MAKE) TARGETDOC=$${targetdoc} doc) || exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
cat $(srcdir)/sys.tex >>tmp.texi
|
cat $(srcdir)/sys.tex >>tmp-targetdep.texi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi targetdep.tex
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-targetdep.texi targetdep.tex
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
targetdep.tex: stmp-targetdep ; @true
|
targetdep.tex: stmp-targetdep ; @true
|
||||||
@ -229,7 +229,9 @@ force:
|
|||||||
|
|
||||||
CLEANFILES = $(CRT0) \
|
CLEANFILES = $(CRT0) \
|
||||||
sigset.texi stmp-sigset extra.texi stmp-extra \
|
sigset.texi stmp-sigset extra.texi stmp-extra \
|
||||||
stdio64.texi stmp-stdio64 tmp.texi targetdep.tex stmp-targetdep
|
stdio64.texi stmp-stdio64 targetdep.tex stmp-targetdep \
|
||||||
|
tmp-sigset.texi tmp-iconvset.texi tmp-extra.texi \
|
||||||
|
tmp-stdio64.texi tmp-posix.texi tmp-targetdep.texi
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I .. -I ../..
|
ACLOCAL_AMFLAGS = -I .. -I ../..
|
||||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||||
|
@ -404,7 +404,9 @@ libc_TEXINFOS = sigset.texi extra.texi posix.texi stdio64.texi iconvset.texi \
|
|||||||
|
|
||||||
CLEANFILES = $(CRT0) \
|
CLEANFILES = $(CRT0) \
|
||||||
sigset.texi stmp-sigset extra.texi stmp-extra \
|
sigset.texi stmp-sigset extra.texi stmp-extra \
|
||||||
stdio64.texi stmp-stdio64 tmp.texi targetdep.tex stmp-targetdep
|
stdio64.texi stmp-stdio64 targetdep.tex stmp-targetdep \
|
||||||
|
tmp-sigset.texi tmp-iconvset.texi tmp-extra.texi \
|
||||||
|
tmp-stdio64.texi tmp-posix.texi tmp-targetdep.texi
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I .. -I ../..
|
ACLOCAL_AMFLAGS = -I .. -I ../..
|
||||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||||
@ -1000,69 +1002,69 @@ libc.dvi: sigset.texi extra.texi stdio64.texi posix.texi iconvset.texi \
|
|||||||
|
|
||||||
stmp-sigset: config.status
|
stmp-sigset: config.status
|
||||||
if test -n "$(LIBC_SIGNAL_LIB)"; then \
|
if test -n "$(LIBC_SIGNAL_LIB)"; then \
|
||||||
echo "@set SIGNALS" >tmp.texi; \
|
echo "@set SIGNALS" >tmp-sigset.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear SIGNALS" >tmp.texi; \
|
echo "@clear SIGNALS" >tmp-sigset.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi sigset.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-sigset.texi sigset.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
sigset.texi: stmp-sigset ; @true
|
sigset.texi: stmp-sigset ; @true
|
||||||
|
|
||||||
stmp-iconvset: config.status
|
stmp-iconvset: config.status
|
||||||
if test -n "$(NEWLIB_ICONV_LIBS)"; then \
|
if test -n "$(NEWLIB_ICONV_LIBS)"; then \
|
||||||
echo "@set ICONV" >tmp.texi; \
|
echo "@set ICONV" >tmp-iconvset.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear ICONV" >tmp.texi; \
|
echo "@clear ICONV" >tmp-iconvset.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi iconvset.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-iconvset.texi iconvset.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
iconvset.texi: stmp-iconvset ; @true
|
iconvset.texi: stmp-iconvset ; @true
|
||||||
|
|
||||||
stmp-extra: config.status
|
stmp-extra: config.status
|
||||||
if test -n "$(LIBC_EXTRA_LIB)"; then \
|
if test -n "$(LIBC_EXTRA_LIB)"; then \
|
||||||
echo "@set EXTRA" >tmp.texi; \
|
echo "@set EXTRA" >tmp-extra.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear EXTRA" >tmp.texi; \
|
echo "@clear EXTRA" >tmp-extra.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi extra.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-extra.texi extra.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
extra.texi: stmp-extra ; @true
|
extra.texi: stmp-extra ; @true
|
||||||
|
|
||||||
stmp-stdio64: config.status
|
stmp-stdio64: config.status
|
||||||
if test -n "$(LIBC_STDIO64_LIB)"; then \
|
if test -n "$(LIBC_STDIO64_LIB)"; then \
|
||||||
echo "@set STDIO64" >tmp.texi; \
|
echo "@set STDIO64" >tmp-stdio64.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear STDIO64" >tmp.texi; \
|
echo "@clear STDIO64" >tmp-stdio64.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi stdio64.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-stdio64.texi stdio64.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
stdio64.texi: stmp-stdio64 ; @true
|
stdio64.texi: stmp-stdio64 ; @true
|
||||||
|
|
||||||
stmp-posix: config.status
|
stmp-posix: config.status
|
||||||
if test -n "$(LIBC_POSIX_LIB)"; then \
|
if test -n "$(LIBC_POSIX_LIB)"; then \
|
||||||
echo "@set POSIX" >tmp.texi; \
|
echo "@set POSIX" >tmp-posix.texi; \
|
||||||
else \
|
else \
|
||||||
echo "@clear POSIX" >tmp.texi; \
|
echo "@clear POSIX" >tmp-posix.texi; \
|
||||||
fi
|
fi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi posix.texi
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-posix.texi posix.texi
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
posix.texi: stmp-posix ; @true
|
posix.texi: stmp-posix ; @true
|
||||||
|
|
||||||
stmp-targetdep: force
|
stmp-targetdep: force
|
||||||
rm -f tmp.texi
|
rm -f tmp-targetdep.texi
|
||||||
targetdoc=`pwd`/tmp.texi; \
|
targetdoc=`pwd`/tmp-targetdep.texi; \
|
||||||
for d in $(SUBDIRS); do \
|
for d in $(SUBDIRS); do \
|
||||||
if test "$$d" != "."; then \
|
if test "$$d" != "."; then \
|
||||||
(cd $$d && $(MAKE) TARGETDOC=$${targetdoc} doc) || exit 1; \
|
(cd $$d && $(MAKE) TARGETDOC=$${targetdoc} doc) || exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
cat $(srcdir)/sys.tex >>tmp.texi
|
cat $(srcdir)/sys.tex >>tmp-targetdep.texi
|
||||||
$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi targetdep.tex
|
$(SHELL) $(newlib_basedir)/../move-if-change tmp-targetdep.texi targetdep.tex
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
targetdep.tex: stmp-targetdep ; @true
|
targetdep.tex: stmp-targetdep ; @true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user