From: Jean-Mickael Guerin Date: Wed, 2 Mar 2016 21:34:50 +0000 (+0100) Subject: build: fix call to mkdir X-Git-Tag: v16.06-rc1~257 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=433688dbdcaa550f7cdb6314742fb46c0c95d5d8;p=vpp.git build: fix call to mkdir Seen during build: /bin/bash: line 1: @mkdir: command not found Remove the extra prefix '@', this line is part of a single operation actually. Change-Id: I5fc265ae7c2dda01c61b369803d3c30a42a91f70 Signed-off-by: Jean-Mickael Guerin --- 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 $@