summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2006-09-20 08:23:41 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2006-09-20 08:23:41 +0000
commit4aea571bf828eedbeb4de558a0e361a677d4c6e3 (patch)
treec5b1353f4fde210ed38cab6a7089623671e5d788
parentForce configure not to inject all kinds of -Werror crap (bug #148230) (diff)
downloadgentoo-2-4aea571bf828eedbeb4de558a0e361a677d4c6e3.tar.gz
gentoo-2-4aea571bf828eedbeb4de558a0e361a677d4c6e3.tar.bz2
gentoo-2-4aea571bf828eedbeb4de558a0e361a677d4c6e3.zip
Added new option to call all parts of src_unpack, but not unpack.
-rw-r--r--eclass/vdr-plugin.eclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/vdr-plugin.eclass b/eclass/vdr-plugin.eclass
index 4df88a5300b3..5d2eb30d8234 100644
--- a/eclass/vdr-plugin.eclass
+++ b/eclass/vdr-plugin.eclass
@@ -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/eclass/vdr-plugin.eclass,v 1.33 2006/09/19 19:31:33 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.34 2006/09/20 08:23:41 zzam Exp $
#
# Author:
# Matthias Schwarzott <zzam@gentoo.org>
@@ -138,6 +138,9 @@ vdr-plugin_src_unpack() {
while [ "$1" ]; do
case "$1" in
+ all_but_unpack)
+ vdr-plugin_src_unpack add_local_patch patchmakefile
+ ;;
unpack)
base_src_unpack
;;