diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-05-16 15:44:43 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-05-16 15:44:43 +0000 |
commit | a7d884b6afe50d15fd41d1f878bbf304425eb1e8 (patch) | |
tree | 76223894008a4f87ffa1df5610158b11c5f243bf /eclass/freebsd.eclass | |
parent | Add old version needed for dev-python/fabric test suite. (diff) | |
download | historical-a7d884b6afe50d15fd41d1f878bbf304425eb1e8.tar.gz historical-a7d884b6afe50d15fd41d1f878bbf304425eb1e8.tar.bz2 historical-a7d884b6afe50d15fd41d1f878bbf304425eb1e8.zip |
Do not install programs or libraries with the system immutable flag; it is more annoying than useful.
Diffstat (limited to 'eclass/freebsd.eclass')
-rw-r--r-- | eclass/freebsd.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index f8ab6bdbd812..b09a1f9b0e96 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.19 2012/05/04 13:31:31 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.20 2012/05/16 15:44:43 aballier Exp $ # # Diego Pettenò <flameeyes@gentoo.org> @@ -99,7 +99,7 @@ freebsd_src_compile() { use profile && filter-flags "-fomit-frame-pointer" use profile || mymakeopts="${mymakeopts} NO_PROFILE= " - mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS=" + mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS= NO_FSCHG=" # Many things breaks when using ricer flags here [[ -z "${NOFLAGSTRIP}" ]] && strip-flags @@ -113,7 +113,7 @@ freebsd_src_compile() { freebsd_src_install() { use profile || mymakeopts="${mymakeopts} NO_PROFILE= " - mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS=" + mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS= NO_FSCHG=" [[ -z "${BMAKE}" ]] && BMAKE="$(freebsd_get_bmake)" |