diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-07-26 19:08:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-07-26 19:08:26 +0000 |
commit | e402ade384ba5b108ea232f236481ce869fb50ef (patch) | |
tree | e8be4d897e04e8f45722f4a7cd3144a75fa86507 /cpp | |
parent | adding a task for creating JAD files for MIDlets (diff) | |
download | ice-e402ade384ba5b108ea232f236481ce869fb50ef.tar.bz2 ice-e402ade384ba5b108ea232f236481ce869fb50ef.tar.xz ice-e402ade384ba5b108ea232f236481ce869fb50ef.zip |
ignore missing directories
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/Makefile b/cpp/src/Makefile index c8e4a7854b3..b0578d0abfb 100644 --- a/cpp/src/Makefile +++ b/cpp/src/Makefile @@ -38,6 +38,9 @@ SUBDIRS = IceUtil \ $(EVERYTHING):: @for subdir in $(SUBDIRS); \ do \ - echo "making $@ in $$subdir"; \ - ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + if test -d $$subdir ; \ + then \ + echo "making $@ in $$subdir"; \ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + fi; \ done |