corrected small bug, to handle when DIRS is not defined.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anand Shukla 2002-09-18 04:29:30 +00:00
parent 6689b06697
commit 7c7a07e501
2 changed files with 4 additions and 0 deletions

View File

@ -182,10 +182,12 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
# Handle the DIRS and PARALLEL_DIRS options
#---------------------------------------------------------
ifdef DIRS
all install clean ::
$(VERB) for dir in ${DIRS}; do \
(cd $$dir; $(MAKE) $@) || exit 1; \
done
endif
# Handle PARALLEL_DIRS
ifdef PARALLEL_DIRS

View File

@ -182,10 +182,12 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
# Handle the DIRS and PARALLEL_DIRS options
#---------------------------------------------------------
ifdef DIRS
all install clean ::
$(VERB) for dir in ${DIRS}; do \
(cd $$dir; $(MAKE) $@) || exit 1; \
done
endif
# Handle PARALLEL_DIRS
ifdef PARALLEL_DIRS