Bug 184193 - Update CFLAGS
Summary: Update CFLAGS
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-23 13:30 UTC by lukas.slebodnik
Modified: 2013-11-23 15:20 UTC (History)
0 users

See Also:


Attachments
file.diff (554 bytes, patch)
2013-11-23 13:30 UTC, lukas.slebodnik
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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"