summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 ; \