summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJörg Bornkessel <hd_brummy@gentoo.org>2014-01-24 13:51:18 +0000
committerJörg Bornkessel <hd_brummy@gentoo.org>2014-01-24 13:51:18 +0000
commit231bcbc4aafeec30c05c3ebaaabdd179a3d5702d (patch)
tree19631e277902afd4bcdef0582b7663f607a2db90 /eclass
parentVersion bump, remove old (diff)
downloadgentoo-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/ChangeLog5
-rw-r--r--eclass/vdr-plugin-2.eclass6
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