2004-08-31 11:27:00 +02:00
|
|
|
#! /bin/sh
|
|
|
|
|
2004-11-05 05:49:19 +01:00
|
|
|
if [ $# -ne 1 ]
|
2004-08-31 11:27:00 +02:00
|
|
|
then
|
2004-11-05 05:49:19 +01:00
|
|
|
echo "Usage: $0 <target-mach-triplet>"
|
2004-08-31 11:27:00 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2004-11-05 05:49:19 +01:00
|
|
|
machine=$1
|
2004-08-31 11:27:00 +02:00
|
|
|
target=fixinc.sh
|
|
|
|
|
|
|
|
# Check for special fix rules for particular targets
|
|
|
|
case $machine in
|
|
|
|
alpha*-dec-*vms* | \
|
|
|
|
i?86-moss-msdos* | \
|
|
|
|
i?86-*-pe | \
|
|
|
|
i?86-*-cygwin* | \
|
2010-03-28 18:40:50 +02:00
|
|
|
i?86-*-mingw32* | \
|
|
|
|
x86_64-*-mingw32* | \
|
2004-08-31 11:27:00 +02:00
|
|
|
i?86-*-interix* | \
|
2006-12-12 10:47:45 +01:00
|
|
|
*-*-vxworks* | \
|
2004-08-31 11:27:00 +02:00
|
|
|
powerpc-*-eabisim* | \
|
|
|
|
powerpc-*-eabi* | \
|
|
|
|
powerpc-*-rtems* | \
|
|
|
|
powerpcle-*-eabisim* | \
|
|
|
|
powerpcle-*-eabi* )
|
|
|
|
# IF there is no include fixing,
|
|
|
|
# THEN create a no-op fixer and exit
|
|
|
|
(echo "#! /bin/sh" ; echo "exit 0" ) > ${target}
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2004-11-23 23:45:53 +01:00
|
|
|
cat < ${srcdir}/fixinc.in > ${target} || exit 1
|
2004-08-31 11:27:00 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
chmod 755 ${target}
|