buildtools: fix build for some mktemp
authorFerruh Yigit <ferruh.yigit@intel.com>
Sat, 27 Oct 2018 00:38:15 +0000 (01:38 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 27 Oct 2018 13:30:25 +0000 (15:30 +0200)
commit3771edc35438bbe476babd1aeb2bc1e6675864ad
tree0fd3a302eb0bd4a536eaca2eb868159477c11de1
parent6e9270eab112d68999a9124866dbfc46cd498d1b
buildtools: fix build for some mktemp

build error:
== Build drivers/net/tap
mktemp: cannot create temp file /tmp/dpdk.auto-config-h.sh.XXX.c:
Invalid argument
.../buildtools/auto-config-h.sh: line 86: : No such file or directory
.../drivers/net/tap/Makefile:55: recipe for target
   'tap_autoconf.h.new' failed

Above error observed on Wind River Linux 8.0

`mktemp` command in that system has a restrictions to have X in
the template at the end and at least six of them.

Complied to mktemp requirements and add -xc flag to compiler to say
`temp` file is a C file

Fixes: ff37ca5d3773 ("devtools: use a common prefix for temporary files")

Reported-by: Shuai Zhu <shuaix.zhu@intel.com>
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
buildtools/auto-config-h.sh