summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-17 23:23:30 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-17 23:23:30 +0000
commit30aaa5cfc40285d4d005688898dc3c6ecb61a39b (patch)
tree00f8dd9730b76520da5e7fc0e3c41a9911945776 /eclass
parentnew version for gnome-2.14. Includes a brand new plugin system and many other... (diff)
downloadgentoo-2-30aaa5cfc40285d4d005688898dc3c6ecb61a39b.tar.gz
gentoo-2-30aaa5cfc40285d4d005688898dc3c6ecb61a39b.tar.bz2
gentoo-2-30aaa5cfc40285d4d005688898dc3c6ecb61a39b.zip
add -E to default epatch opts
Diffstat (limited to 'eclass')
-rw-r--r--eclass/eutils.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index 723f80a7a05e..7c133ab5b7a9 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.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/eutils.eclass,v 1.229 2006/03/16 03:44:54 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.230 2006/03/17 23:23:30 vapier Exp $
#
# Author: Martin Schlemmer <azarah@gentoo.org>
#
@@ -90,7 +90,8 @@ EPATCH_SUFFIX="patch.bz2"
# Default options for patch
# Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571
# Set --no-backup-if-mismatch so we don't leave '.orig' files behind.
-EPATCH_OPTS="-g0 --no-backup-if-mismatch"
+# Set -E to automatically remove empty files.
+EPATCH_OPTS="-g0 -E --no-backup-if-mismatch"
# List of patches not to apply. Not this is only file names,
# and not the full path ..
EPATCH_EXCLUDE=""