summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2005-07-26 19:08:26 +0000
committerMark Spruiell <mes@zeroc.com>2005-07-26 19:08:26 +0000
commite402ade384ba5b108ea232f236481ce869fb50ef (patch)
treee8be4d897e04e8f45722f4a7cd3144a75fa86507 /cpp
parentadding a task for creating JAD files for MIDlets (diff)
downloadice-e402ade384ba5b108ea232f236481ce869fb50ef.tar.bz2
ice-e402ade384ba5b108ea232f236481ce869fb50ef.tar.xz
ice-e402ade384ba5b108ea232f236481ce869fb50ef.zip
ignore missing directories
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/Makefile7
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