aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vlib-api/Makefile.am2
-rw-r--r--vpp/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/vlib-api/Makefile.am b/vlib-api/Makefile.am
index a1fab44c687..150894e80b5 100644
--- a/vlib-api/Makefile.am
+++ b/vlib-api/Makefile.am
@@ -77,6 +77,6 @@ SUFFIXES = .api.h .api
%.api.h: %.api
@echo " APIGEN " $@ ; \
- @mkdir -p `dirname $@` ; \
+ mkdir -p `dirname $@` ; \
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \
| vppapigen --input - --output $@ --show-name $@
diff --git a/vpp/Makefile.am b/vpp/Makefile.am
index 15f8d126fe7..06ec713e703 100644
--- a/vpp/Makefile.am
+++ b/vpp/Makefile.am
@@ -82,7 +82,7 @@ SUFFIXES = .api.h .api
%.api.h: %.api
@echo " APIGEN " $@ ; \
- @mkdir -p `dirname $@` ; \
+ mkdir -p `dirname $@` ; \
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \
| vppapigen --input - --output $@ --show-name $@