Bug 186980

Summary: [patch] mail/cclient ignores CFLAGS
Product: Ports & Packages Reporter: Adam Weinberger <adamw>
Component: Individual Port(s)Assignee: Anders Nordby <anders>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
cclient.patch none

Description Adam Weinberger freebsd_committer freebsd_triage 2014-02-23 15:40:00 UTC
cclient uses some bizarre build system---maybe it's normal in Washington.
It helpfully clobbers CFLAGS, but we can restore it by simply passing
CFLAGS to the Makefile as EXTRACFLAGS.

Fix: The attached one-line patch solves this problem.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-02-23 15:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->anders

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-09 16:02:27 UTC
Author: adamw
Date: Sun Mar  9 16:02:19 2014
New Revision: 347654
URL: http://svnweb.freebsd.org/changeset/ports/347654
QAT: https://qat.redports.org/buildarchive/r347654/

Log:
  The cclient build system clobbers CFLAGS, but we can pass our own
  in EXTRACFLAGS.
  
  PR:		ports/186980
  Approved by:	maintainer timeout

Modified:
  head/mail/cclient/Makefile

Modified: head/mail/cclient/Makefile
==============================================================================
--- head/mail/cclient/Makefile	Sun Mar  9 15:54:52 2014	(r347653)
+++ head/mail/cclient/Makefile	Sun Mar  9 16:02:19 2014	(r347654)
@@ -48,6 +48,7 @@ MAKE_ARGS+=	SSLTYPE=unix.nopwd SSLDIR=${
 .endif
 
 WRKSRC=		${WRKDIR}/${DISTNAME}
+MAKE_ARGS+=	EXTRACFLAGS="${CFLAGS}"
 
 SHLIBBASE=	c-client4
 SHLIBMAJ=	9
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Adam Weinberger freebsd_committer freebsd_triage 2014-03-09 16:02:38 UTC
State Changed
From-To: open->closed

Committed.