pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/zip Append to CFLAGS instead of overwriting ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/51eac334774a
branches:  trunk
changeset: 501486:51eac334774a
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Oct 23 18:07:10 2005 +0000

description:
Append to CFLAGS instead of overwriting them. Fixes pkglint warnings.

diffstat:

 archivers/zip/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r f62f60188e8c -r 51eac334774a archivers/zip/Makefile
--- a/archivers/zip/Makefile    Sun Oct 23 18:05:06 2005 +0000
+++ b/archivers/zip/Makefile    Sun Oct 23 18:07:10 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.45 2005/08/03 18:54:31 wiz Exp $
+# $NetBSD: Makefile,v 1.46 2005/10/23 18:07:10 rillig Exp $
 
 DISTNAME=      zip231
 PKGNAME=       zip-2.31
@@ -22,7 +22,7 @@
 .include "../../mk/bsd.prefs.mk"
 
 .if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "powerpc"
-CFLAGS=                -O0
+CFLAGS+=       -O0
 .endif
 
 .include "../../mk/compiler.mk"
@@ -31,7 +31,7 @@
 BUILD_TARGET=  generic_gcc
 .else
 BUILD_TARGET=  generic
-CFLAGS=                -O
+CFLAGS+=       -O
 .endif
 
 .if ${OPSYS} == "Linux"



Home | Main Index | Thread Index | Old Index