diff options
author | seb <seb@pkgsrc.org> | 2009-09-19 09:01:59 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2009-09-19 09:01:59 +0000 |
commit | d7241c0a75eb0b7db547ebbc04597bfa2a2a5372 (patch) | |
tree | 2861ac4e2ca1beffc39bdfb5ca113a20d403b49c /devel/bmake | |
parent | d5e5d7473248db25ecb40b10b75ea29179514aaa (diff) | |
download | pkgsrc-d7241c0a75eb0b7db547ebbc04597bfa2a2a5372.tar.gz |
Fix build with sunpro's cc and other non-gcc compiler I guess:
do not blindly compile var.c with -Wno-cast-qual.
Diffstat (limited to 'devel/bmake')
-rw-r--r-- | devel/bmake/files/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/devel/bmake/files/Makefile.in b/devel/bmake/files/Makefile.in index 77f1f6305c2..6369bb2fbb8 100644 --- a/devel/bmake/files/Makefile.in +++ b/devel/bmake/files/Makefile.in @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.in,v 1.13 2009/09/18 21:27:25 joerg Exp $ +# $NetBSD: Makefile.in,v 1.14 2009/09/19 09:01:59 seb Exp $ # @(#)Makefile 5.2 (Berkeley) 12/28/90 -# $Id: Makefile.in,v 1.13 2009/09/18 21:27:25 joerg Exp $ +# $Id: Makefile.in,v 1.14 2009/09/19 09:01:59 seb Exp $ PROG= bmake SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ @@ -121,7 +121,6 @@ install-mk: .else @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false .endif -CFLAGS_var.o += -Wno-cast-qual .ifdef TOOLDIR # this is a native netbsd build, |