summaryrefslogtreecommitdiff
path: root/eclass
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
commit289f4b763e36471509997b5bb38c2918b7fec4d8 (patch)
tree0a3638e137700b27f71835fc17410095a410eb2e /eclass
parentForce configure not to inject all kinds of -Werror crap (bug #148230) (diff)
downloadhistorical-289f4b763e36471509997b5bb38c2918b7fec4d8.tar.gz
historical-289f4b763e36471509997b5bb38c2918b7fec4d8.tar.bz2
historical-289f4b763e36471509997b5bb38c2918b7fec4d8.zip
Added new option to call all parts of src_unpack, but not unpack.
Diffstat (limited to 'eclass')
-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
;;