From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ECCCE1384B4 for ; Sat, 19 Dec 2015 11:43:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F5B0E08EA; Sat, 19 Dec 2015 11:43:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8D62E08EA for ; Sat, 19 Dec 2015 11:43:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B95334072E for ; Sat, 19 Dec 2015 11:43:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67AA1B33 for ; Sat, 19 Dec 2015 11:43:10 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1450525374.8eca25e6dabf5bdebad36460eae0923d62cb8515.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8eca25e6dabf5bdebad36460eae0923d62cb8515 X-VCS-Branch: master Date: Sat, 19 Dec 2015 11:43:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3822d5ce-3a62-46d6-8d5c-53480c2cbabe X-Archives-Hash: 53027e6f11a09ab0c8bd40139db98d20 commit: 8eca25e6dabf5bdebad36460eae0923d62cb8515 Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 19 11:42:54 2015 +0000 Commit: Ulrich Müller gentoo 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