Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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 8664e8aa6..632b148b3 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 ; \