diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-07-23 05:19:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-07-23 05:19:00 +0000 |
commit | 4d74c2aaaa6bda3eefee9fd3c1746e28e818cca5 (patch) | |
tree | 02d7fa0c2c8ea6c210331bde50b7969416882d24 /eclass/bsdmk.eclass | |
parent | deprecate 2005.1 selinux profiles (diff) | |
download | gentoo-2-4d74c2aaaa6bda3eefee9fd3c1746e28e818cca5.tar.gz gentoo-2-4d74c2aaaa6bda3eefee9fd3c1746e28e818cca5.tar.bz2 gentoo-2-4d74c2aaaa6bda3eefee9fd3c1746e28e818cca5.zip |
bindnow-flags is going away, so punt fix_lazy_bindings since no one is using it
Diffstat (limited to 'eclass/bsdmk.eclass')
-rw-r--r-- | eclass/bsdmk.eclass | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/eclass/bsdmk.eclass b/eclass/bsdmk.eclass index e3bd3b31350f..b3902bdcf0ac 100644 --- a/eclass/bsdmk.eclass +++ b/eclass/bsdmk.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/bsdmk.eclass,v 1.7 2006/12/01 02:58:32 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/bsdmk.eclass,v 1.8 2007/07/23 05:19:00 vapier Exp $ # # Otavio R. Piske "AngusYoung" <angusyoung@gentoo.org> # Diego Pettenò <flameeyes@gentoo.org> @@ -56,16 +56,6 @@ dummy_mk() { done } -#### fix_lazy_bindings <dirnames> -# set LDFLAGS in order to fix lazy binding warnings in binaries -# -############################################################################ -fix_lazy_bindings() { - for dir in $@; do - echo "LDFLAGS+= $(bindnow-flags)" >> ${dir}/Makefile - done -} - bsdmk_src_compile() { mkmake || die "make failed" } |