summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-03-27 07:12:19 +0000
committerUlrich Müller <ulm@gentoo.org>2009-03-27 07:12:19 +0000
commita0652794fe171de3534d86171af20cccf7727a9e (patch)
tree1b5abfc3d8881baf38e72729a6863bd3483f07d8 /eclass
parentRemove comment headers from site files since they are created by the eclass. (diff)
downloademacs-a0652794fe171de3534d86171af20cccf7727a9e.tar.gz
emacs-a0652794fe171de3534d86171af20cccf7727a9e.tar.bz2
emacs-a0652794fe171de3534d86171af20cccf7727a9e.zip
Avoid unnecessary code duplication for RDEPEND.
svn path=/emacs-overlay/; revision=1354
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog2
-rw-r--r--eclass/elisp.eclass2
2 files changed, 3 insertions, 1 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 4d5d6af..4aafc04 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,5 +1,7 @@
2009-03-26 Ulrich Mueller <ulm@gentoo.org>
+ * elisp.eclass (RDEPEND): Avoid unnecessary code duplication.
+
* elisp-common.eclass (elisp-site-file-install): Automagically
insert an empty first line and a header comment if they are
missing from the file.
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
index ec73f47..f619765 100644
--- a/eclass/elisp.eclass
+++ b/eclass/elisp.eclass
@@ -62,7 +62,7 @@ case "${EAPI:-0}" in
esac
DEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
-RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
+RDEPEND="${DEPEND}"
IUSE=""
elisp_pkg_setup() {