2017-12-07 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / fixincludes / mkfixinc.sh
blob0f9648608e94f97ab13da223d8192cb04c255772
1 #! /bin/sh
3 if [ $# -ne 1 ]
4 then
5 echo "Usage: $0 <target-mach-triplet>"
6 exit 1
7 fi
9 machine=$1
10 target=fixinc.sh
12 # Check for special fix rules for particular targets
13 case $machine in
14 i?86-*-cygwin* | \
15 i?86-*-mingw32* | \
16 x86_64-*-mingw32* | \
17 powerpc-*-eabisim* | \
18 powerpc-*-eabi* | \
19 powerpc-*-rtems* | \
20 powerpcle-*-eabisim* | \
21 powerpcle-*-eabi* | \
22 *-musl* )
23 # IF there is no include fixing,
24 # THEN create a no-op fixer and exit
25 (echo "#! /bin/sh" ; echo "exit 0" ) > ${target}
29 cat < ${srcdir}/fixinc.in > ${target} || exit 1
31 esac
32 chmod 755 ${target}