diff options
-rw-r--r-- | Makefile.common | 2 | ||||
-rw-r--r-- | Makefile.rules | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index da515716b0..7021906821 100644 --- a/Makefile.common +++ b/Makefile.common @@ -180,7 +180,7 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) ifdef DIRS # Only do this if we're using DIRS! all install clean:: - @for dir in ${DIRS}; do \ + $(VERB) for dir in ${DIRS}; do \ (cd $$dir; $(MAKE) $@) || exit 1; \ done endif diff --git a/Makefile.rules b/Makefile.rules index da515716b0..7021906821 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -180,7 +180,7 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) ifdef DIRS # Only do this if we're using DIRS! all install clean:: - @for dir in ${DIRS}; do \ + $(VERB) for dir in ${DIRS}; do \ (cd $$dir; $(MAKE) $@) || exit 1; \ done endif |