Bug 184193

Summary: Update CFLAGS
Product: Ports & Packages Reporter: lukas.slebodnik
Component: Individual Port(s)Assignee: Po-Chuan Hsieh <sunpoet>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description lukas.slebodnik 2013-11-23 13:30:00 UTC
Variable CFLAGS was overridden with value -fstack-protector-all
Attached patch fixes this issue and parameter -fstack-protector-all is only appended to CFLAGS

Fix: Patch attached with submission follows:
Comment 1 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-11-23 14:10:23 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

I'll take it.
Comment 2 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-11-23 15:10:52 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-11-23 15:10:57 UTC
Author: sunpoet
Date: Sat Nov 23 15:10:44 2013
New Revision: 334674
URL: http://svnweb.freebsd.org/changeset/ports/334674

Log:
  - Do not overwrite CFLAGS
  
  PR:		ports/184193
  Submitted by:	Lukas Slebodnik <lukas.slebodnik@intrak.sk> (maintainer)

Modified:
  head/security/sssd/Makefile   (contents, props changed)

Modified: head/security/sssd/Makefile
==============================================================================
--- head/security/sssd/Makefile	Sat Nov 23 14:46:43 2013	(r334673)
+++ head/security/sssd/Makefile	Sat Nov 23 15:10:44 2013	(r334674)
@@ -44,7 +44,7 @@ CONFIGURE_ARGS=	--with-selinux=no --with
 		--with-db-path=/var/db/sss --with-pipe-path=/var/run/sss \
 		--with-pubconf-path=/var/run/sss --with-mcache-path=/var/db/sss_mc \
 		--with-unicode-lib=libunistring --with-autofs=no
-CFLAGS=		-fstack-protector-all
+CFLAGS+=	-fstack-protector-all
 PLIST_SUB=	PYTHON_VER=${PYTHON_VER}
 #DEBUG_FLAGS=  -g
 MAKE_ENV+=	LINGUAS="bg de eu es fr hu id it ja nb nl pl pt ru sv tg tr uk zh_CN zh_TW"
_______________________________________________
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"