aboutsummaryrefslogtreecommitdiff
path: root/newlib/Makefile.in
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2010-12-16 21:59:17 +0000
committerJeff Johnston <jjohnstn@redhat.com>2010-12-16 21:59:17 +0000
commit321b046c80ef6fc21e994a58f436d348d50b7db7 (patch)
tree42cdea02e642198d9086a7a8e63a1fda2fd3ddd5 /newlib/Makefile.in
parent9296807af3c5ffe07fe00316dc7552a57df7fea9 (diff)
downloadnewlib-321b046c80ef6fc21e994a58f436d348d50b7db7.zip
newlib-321b046c80ef6fc21e994a58f436d348d50b7db7.tar.gz
newlib-321b046c80ef6fc21e994a58f436d348d50b7db7.tar.bz2
2010-12-16 Jeff Johnston <jjohnstn@redhat.com>
* NEWS: Update with 1.19.0 info. * README: Ditto. * MAINTAINERS: Update. * acinclude.m4: Change version number to 1.19.0. * aclocal.m4: Regenerated. * configure: Ditto. * Makefile.am: Fix stmp-targ-include target. * Makefile.in: Regenerated. * doc/aclocal.m4: Ditto. * doc/configure: Ditto. * libc/*/aclocal.m4: Ditto. * libc/*/configure: Ditto. * libc/libc.texinfo: Ditto. * libm/*/aclocal.m4: Ditto. * libm/*/configure: Ditto. * libm/libm.texinfo: Ditto. * libc/sys/linux/shared.ld: Add VERS_1.19
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r--newlib/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in
index 8664e8a..632b148 100644
--- a/newlib/Makefile.in
+++ b/newlib/Makefile.in
@@ -207,6 +207,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
POSIX_OBJECTLIST = @POSIX_OBJECTLIST@
@@ -931,7 +932,9 @@ stmp-targ-include: config.status
-for i in $(srcdir)/libc/sys/$(sys_dir)/include/*; do \
if [ -d $$i ]; then \
for j in $$i/*.h; do \
- -mkdir targ-include/`basename $$i`; \
+ if [ ! -d targ-include/`basename $$i` ]; then \
+ mkdir targ-include/`basename $$i`; \
+ fi; \
cp $$j targ-include/`basename $$i`/`basename $$j`; \
done \
else true; fi ; \