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>2001-12-14 21:23:19 +0300
committerChristopher Faylor <me@cgf.cx>2001-12-14 21:23:19 +0300
commit94597cd05f41c02ce8037feb0a8db6a9f82abc23 (patch)
tree78c45c8d3a348342368ae0f300cb8e6d318c7152 /winsup/Makefile.in
parentbdc7392ce30a5b90ecf05b73c04cc34496482f8e (diff)
* Makefile.in: Exit immediately if a sub-make fails.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r--winsup/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index 12ab73bf5..7ed371ea2 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -67,17 +67,17 @@ info:
$(SUBDIRS):
@if cd $@ 2>/dev/null; then \
- $(MAKE) all; \
+ $(MAKE) all || exit 1; \
fi || exit 0
$(INSTALL_SUBDIRS):
@if cd ${patsubst install_%,%,$@} 2>/dev/null; then \
- $(MAKE) install; \
+ $(MAKE) install || exit 1; \
fi || exit 0
$(CLEAN_SUBDIRS):
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \
- $(MAKE) clean; \
+ $(MAKE) clean || exit 1; \
fi || exit 0
.PRECIOUS: Makefile
@@ -107,7 +107,7 @@ mingw: w32api
cygwin: w32api
-cinstall: mingw
+cinstall: mingw bz2lib zlib
install_utils: cygwin mingw
@@ -115,4 +115,4 @@ install_mingw: w32api
install_cygwin: w32api
-install_cinstall: mingw
+install_cinstall: mingw bz2lib zlib