commit: 8eca25e6dabf5bdebad36460eae0923d62cb8515
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 11:42:54 2015 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 11:42:54 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eca25e6
elisp.eclass: Delete superfluous quotes in case statements.
eclass/elisp.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
index 6f1a6af..1178880 100644
--- a/eclass/elisp.eclass
+++ b/eclass/elisp.eclass
@@ -67,7 +67,7 @@
inherit elisp-common eutils
-case "${EAPI:-0}" in
+case ${EAPI:-0} in
0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \
pkg_{setup,postinst,postrm} ;;
*) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
@@ -105,7 +105,7 @@ elisp_src_unpack() {
[[ -d ${S} ]] || S=${WORKDIR}
fi
- case "${EAPI:-0}" in
+ case ${EAPI:-0} in
0|1) [[ -d ${S} ]] && cd "${S}"
elisp_src_prepare ;;
esac