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:
authorChristopher Faylor <me@cgf.cx>2000-12-16 01:25:51 +0300
committerChristopher Faylor <me@cgf.cx>2000-12-16 01:25:51 +0300
commit7fbcbc95929b933657d8b69673c42d1dd84408b0 (patch)
treee5d27bd05731cc4aed3b388e64e8855749068b0b /winsup/cygwin/Makefile.in
parent80d0051c3714bed2c2c922f23b907d6ba11b19da (diff)
* path.cc (normalize_posix_path): Calculate path name length overruns more
dynamically. (normalize_win32_path): Ditto. * Makefile.in: Avoid scanning the directory twice for *.d files.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r--winsup/cygwin/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 37f4c9623..18dbdc7c0 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -219,6 +219,7 @@ $(DEF_FILE): cygwin.din config.status
winsup.h: config.h
-ifneq (,${wildcard *.d})
-include *.d
+deps:=${wildcard *.d}
+ifneq (,$(deps))
+include $(deps)
endif