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
path: root/winsup
diff options
context:
space:
mode:
authorMumit Khan <khan@@xraylith.wisc.edu>2000-03-31 08:43:46 +0400
committerMumit Khan <khan@@xraylith.wisc.edu>2000-03-31 08:43:46 +0400
commitab81a3677290f57b90da729eaad3b3d0f66ae4e3 (patch)
treee8043752029d45d685bccc00ada428258122af6f /winsup
parent152e16e7980917c19991d018910d807687215002 (diff)
2000-03-30 Mumit Khan <khan@xraylith.wisc.edu>
* Makefile.in (subdirs): Workaround for broken shells.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/mingw/ChangeLog4
-rw-r--r--winsup/mingw/Makefile.in3
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index 347918343..1667c0047 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-30 Mumit Khan <khan@xraylith.wisc.edu>
+
+ * Makefile.in (subdirs): Workaround for broken shells.
+
2000-02-03 Mumit Khan <khan@xraylith.wisc.edu>
* Snapshot 2000-02-03.
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in
index 442e32efc..f63d036ca 100644
--- a/winsup/mingw/Makefile.in
+++ b/winsup/mingw/Makefile.in
@@ -212,7 +212,8 @@ install: all
@$(MAKE) subdirs DO=$@ $(FLAGS_TO_PASS)
subdirs: force
- @for i in $(SUBDIRS); do \
+ @test -z "$(SUBDIRS)" && exit 0; \
+ for i in $(SUBDIRS); do \
echo "Making $(DO) in $${i}..." ; \
if [ -d ./$$i ] ; then \
if (rootme=`pwd`/ ; export rootme ; \