mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-13 14:25:12 -04:00
20 lines
673 B
Plaintext
20 lines
673 B
Plaintext
$NetBSD$
|
|
|
|
--- opcodes/configure.in.orig Mon Nov 5 16:29:08 2012
|
|
+++ opcodes/configure.in
|
|
@@ -296,6 +296,14 @@ if test x${all_targets} = xfalse ; then
|
|
# specified, as in sh3-elf, sh3b-linux-gnu, etc.
|
|
# Include it just for ELF targets, since the SH5 bfd:s are ELF only.
|
|
for t in $target $canon_targets; do
|
|
+ # For NetBSD we do NOT want SH5 support unless sh5 or sh64
|
|
+ # is specified
|
|
+ case $t in
|
|
+ sh5*-* | sh64*-*) # let the case below handle it
|
|
+ ;;
|
|
+ sh*-*-netbsd* | sh*l*-*-netbsd*)
|
|
+ continue ;;
|
|
+ esac
|
|
case $t in
|
|
all | sh5*-* | sh64*-* | sh-*-*elf* | shl*-*-*elf* | \
|
|
sh-*-linux* | shl-*-linux*)
|