diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-12 08:53:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-12 08:53:08 +0000 |
commit | 23b90fbe4650873273de7547832cbbde34a4b1b4 (patch) | |
tree | c1fb3b382298dc3e26f191ca0dceddeb0427cc9d /profiles/default | |
parent | Add test use flag to pull optional yaml dependency (diff) | |
download | gentoo-2-23b90fbe4650873273de7547832cbbde34a4b1b4.tar.gz gentoo-2-23b90fbe4650873273de7547832cbbde34a4b1b4.tar.bz2 gentoo-2-23b90fbe4650873273de7547832cbbde34a4b1b4.zip |
Stop using ${LDFLAGS} inside LDFLAGS="" because of dev-libs/boost-build and whitespace.
Diffstat (limited to 'profiles/default')
-rw-r--r-- | profiles/default/linux/make.defaults | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults index b052b2e42158..66f720385a1d 100644 --- a/profiles/default/linux/make.defaults +++ b/profiles/default/linux/make.defaults @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/make.defaults,v 1.5 2010/07/11 19:50:08 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/make.defaults,v 1.6 2010/07/12 08:53:08 ssuominen Exp $ # # System-wide defaults for the Portage system # See portage(5) manpage @@ -50,7 +50,10 @@ VIDEO_CARDS="dummy fbdev v4l" # after discussion on the gentoo-dev ML. As we bang out a clear # direction with how LDFLAGS will be set by default, this entry # may move. -LDFLAGS="-Wl,-O1 ${LDFLAGS}" +# 2010/07/12 - Samuli Suominen <ssuominen@gentoo.org> +# Note that adding LDFLAGS="-Wl,-O1 ${LDFLAGS}" breaks dev-util/boost-build +# because of whitespace. +LDFLAGS="-Wl,-O1" # 2009/09/21 Robin H. Johnson <robbat2@gentoo.org> # http://archives.gentoo.org/gentoo-dev/msg_dc705dc2c1a45e18a85aa62e8fb17009.xml |