diff options
author | Christopher Faylor <me@cgf.cx> | 2000-06-17 22:28:52 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-06-17 22:28:52 +0000 |
commit | 4a7a5a717ca76c4a17b0107c8b0306dfb1ff63fe (patch) | |
tree | 20f5655e18f9bf84c7579c62430a9c586ed50b4b /winsup/mingw/Makefile.in | |
parent | 42867d69ae9901c9fed6e1dd56ff04064151a70d (diff) | |
download | newlib-4a7a5a717ca76c4a17b0107c8b0306dfb1ff63fe.zip newlib-4a7a5a717ca76c4a17b0107c8b0306dfb1ff63fe.tar.gz newlib-4a7a5a717ca76c4a17b0107c8b0306dfb1ff63fe.tar.bz2 |
* Makefile.in (subdirs): Previous change did not fix problem in broken shells.
Diffstat (limited to 'winsup/mingw/Makefile.in')
-rw-r--r-- | winsup/mingw/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index b501f8d..31c0acc 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -219,10 +219,9 @@ install: all $(install_dlls_host) @$(MAKE) subdirs DO=$@ $(FLAGS_TO_PASS) subdirs: force - @test -z "$(SUBDIRS)" && exit 0; \ - for i in $(SUBDIRS); do \ - echo "Making $(DO) in $${i}..." ; \ + @for i in should-never-exist $(SUBDIRS); do \ if [ -d ./$$i ] ; then \ + echo "Making $(DO) in $${i}..." ; \ if (rootme=`pwd`/ ; export rootme ; \ rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \ cd ./$$i; \ |