diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2014-01-24 13:51:18 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2014-01-24 13:51:18 +0000 |
commit | 231bcbc4aafeec30c05c3ebaaabdd179a3d5702d (patch) | |
tree | 19631e277902afd4bcdef0582b7663f607a2db90 /eclass | |
parent | Version bump, remove old (diff) | |
download | gentoo-2-231bcbc4aafeec30c05c3ebaaabdd179a3d5702d.tar.gz gentoo-2-231bcbc4aafeec30c05c3ebaaabdd179a3d5702d.tar.bz2 gentoo-2-231bcbc4aafeec30c05c3ebaaabdd179a3d5702d.zip |
changed debug info in vdr-plugin-2_src_install for Makefile handling
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vdr-plugin-2.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 184327a2e094..3aae39704d1e 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1128 2014/01/24 04:13:58 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1129 2014/01/24 13:51:18 hd_brummy Exp $ + + 24 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin-2.eclass: + changed debug info in vdr-plugin-2_src_install for Makefile handling 24 Jan 2014; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: Work around bug #357287. diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index cb42301e5811..f935beb12d50 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin-2.eclass,v 1.25 2013/10/07 12:21:14 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin-2.eclass,v 1.26 2014/01/24 13:51:18 hd_brummy Exp $ # @ECLASS: vdr-plugin-2.eclass # @MAINTAINER: @@ -525,7 +525,6 @@ vdr-plugin-2_src_install() { local SOFILE_STRING=$(grep SOFILE Makefile) if [[ -n ${SOFILE_STRING} ]]; then - dev_check "einstall with new Makefile handling" BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-install }} einstall ${BUILD_PARAMS} \ ${BUILD_TARGETS} \ @@ -533,6 +532,7 @@ vdr-plugin-2_src_install() { DESTDIR="${D}" \ || die "einstall (makefile target) failed" else + dev_check "Plugin still use the old Makefile handling" insinto "${VDR_PLUGIN_DIR}" doins libvdr-*.so.* fi |