diff options
author | obrien <obrien@FreeBSD.org> | 2002-10-11 17:40:20 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-10-11 17:40:20 +0000 |
commit | f0cb964f2b49ab5e4391bffb21a7ffcb86cfeda5 (patch) | |
tree | b83205c132c2176ad85a2462d9e654e7cbcf2561 /gnu/usr.bin | |
parent | adba3a43801e2c015612d60cb13a09ae5ba9e8af (diff) | |
download | FreeBSD-src-f0cb964f2b49ab5e4391bffb21a7ffcb86cfeda5.zip FreeBSD-src-f0cb964f2b49ab5e4391bffb21a7ffcb86cfeda5.tar.gz |
Binutils 2.13 grew some warnings that make WARNS != 0 now impossible on
sparc64.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/as/Makefile.inc0 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/as/Makefile.inc0 b/gnu/usr.bin/binutils/as/Makefile.inc0 index 9296264..ec9b374 100644 --- a/gnu/usr.bin/binutils/as/Makefile.inc0 +++ b/gnu/usr.bin/binutils/as/Makefile.inc0 @@ -15,7 +15,7 @@ SRCS+= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \ subsegs.c symbols.c write.c depend.c ehopt.c # DEO: why not used? #SRCS+= itbl-ops.c -.if (${TARGET_ARCH} == "alpha") +.if (${TARGET_ARCH} == "alpha" || ${TARGET_ARCH} == "sparc64") WARNS= 0 .else WARNS= 2 |