diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-02-08 19:17:08 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-02-16 14:29:27 +0000 |
commit | 253785e3b96f48c52568c312cec0a5ec596c527f (patch) | |
tree | 86278085001cdc8384ca2ee18a9ecf70e2c1e622 /scripts | |
parent | 9167ebd98f97dee8afa3ee206f1f48244b8707d2 (diff) | |
download | qemu-253785e3b96f48c52568c312cec0a5ec596c527f.tar.gz qemu-253785e3b96f48c52568c312cec0a5ec596c527f.tar.bz2 qemu-253785e3b96f48c52568c312cec0a5ec596c527f.zip |
scripts/feature_to_c.sh: Include qemu/osdep.h rather than config.h
In the .c files generated by this script, include qemu/osdep.h
as the first included header, not config.h.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/feature_to_c.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feature_to_c.sh b/scripts/feature_to_c.sh index 888548e58b..fb1f3363f7 100644 --- a/scripts/feature_to_c.sh +++ b/scripts/feature_to_c.sh @@ -36,7 +36,7 @@ for input; do arrayname=xml_feature_`echo $input | sed 's,.*/,,; s/[-.]/_/g'` ${AWK:-awk} 'BEGIN { n = 0 - printf "#include \"config.h\"\n" + printf "#include \"qemu/osdep.h\"\n" printf "#include \"qemu-common.h\"\n" printf "#include \"exec/gdbstub.h\"\n" print "static const char '$arrayname'[] = {" |