summaryrefslogtreecommitdiff
path: root/fixincludes/mkheaders.in
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@adacore.com>2020-02-13 15:52:18 -0300
committerAlexandre Oliva <oliva@gnu.org>2020-02-13 15:52:18 -0300
commit0a649b83751ce593e20bc9bda92ae52e64fd5cda (patch)
treeca7b97965cb4f56589f694fd2f388a448dfdbb10 /fixincludes/mkheaders.in
parentbb97ad35ead015075ee4747136c9fc75faa27411 (diff)
skip fixinc on vxworks7*, amend mkheaders
vxworks7 headers haven't required fixes, and we've decided to avoid running fixinc on them. The problem with that is that, with a dummy fixinc, mkheaders wipes out include-fixed but then multi_dir subdirs are not created again, so we end up with a limits.h named after each multi_dir, when there are non-default multilibs. Oops. This patch arranges for a dummy fixinc to be created for *-*-vxworks7* targets, and fixes mkheaders so as to create multi_dir subdirs in include-fixed after wiping them out, and to copy limits.h so that it won't take the name that should be of a subdir (unless the multi_dir is limits.h, but that's hopefully never the case ;-) for fixincludes/ChangeLog * mkheaders.in: Re-create subdirs, copy limits.h into subdir. * mkfixinc.sh: Create dummy fixinc for *-*-vxworks7*.
Diffstat (limited to 'fixincludes/mkheaders.in')
-rw-r--r--fixincludes/mkheaders.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/fixincludes/mkheaders.in b/fixincludes/mkheaders.in
index 9109b057c53..a293a57a73b 100644
--- a/fixincludes/mkheaders.in
+++ b/fixincludes/mkheaders.in
@@ -86,6 +86,7 @@ for ml in `cat ${itoolsdatadir}/fixinc_list`; do
sysroot_headers_suffix=`echo ${ml} | sed -e 's/;.*$//'`
multi_dir=`echo ${ml} | sed -e 's/^[^;]*;//'`
subincdir=${incdir}${multi_dir}
+ ${mkinstalldirs} ${subincdir}
. ${itoolsdatadir}/mkheaders.conf
if [ x${STMP_FIXINC} != x ] ; then
TARGET_MACHINE="${target}" target_canonical="${target}" \
@@ -100,5 +101,5 @@ for ml in `cat ${itoolsdatadir}/fixinc_list`; do
fi
fi
- cp ${itoolsdatadir}/include${multi_dir}/limits.h ${subincdir}
+ cp ${itoolsdatadir}/include${multi_dir}/limits.h ${subincdir}/limits.h
done