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:
@ -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 $@
|
||||||
|
@ -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 $@
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user