build: fix call to mkdir 95/495/1
authorJean-Mickael Guerin <jean-mickael.guerin@6wind.com>
Wed, 2 Mar 2016 21:34:50 +0000 (22:34 +0100)
committerJean-Mickael Guerin <jean-mickael.guerin@6wind.com>
Mon, 7 Mar 2016 09:52:58 +0000 (10:52 +0100)
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>
vlib-api/Makefile.am
vpp/Makefile.am

index a1fab44..150894e 100644 (file)
@@ -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 $@
index 15f8d12..06ec713 100644 (file)
@@ -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 $@