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 <jean-mickael.guerin@6wind.com>
This commit is contained in:
Jean-Mickael Guerin
2016-03-02 22:34:50 +01:00
parent 02301ef863
commit 433688dbdc
2 changed files with 2 additions and 2 deletions

View File

@ -77,6 +77,6 @@ SUFFIXES = .api.h .api
%.api.h: %.api %.api.h: %.api
@echo " APIGEN " $@ ; \ @echo " APIGEN " $@ ; \
@mkdir -p `dirname $@` ; \ mkdir -p `dirname $@` ; \
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \ $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
| vppapigen --input - --output $@ --show-name $@ | vppapigen --input - --output $@ --show-name $@

View File

@ -82,7 +82,7 @@ SUFFIXES = .api.h .api
%.api.h: %.api %.api.h: %.api
@echo " APIGEN " $@ ; \ @echo " APIGEN " $@ ; \
@mkdir -p `dirname $@` ; \ mkdir -p `dirname $@` ; \
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \ $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
| vppapigen --input - --output $@ --show-name $@ | vppapigen --input - --output $@ --show-name $@