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 738C01384B4 for ; Tue, 10 Nov 2015 01:27:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A42421C033; Tue, 10 Nov 2015 01:27:26 +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 A11CC21C033 for ; Tue, 10 Nov 2015 01:27:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77C093403A3 for ; Tue, 10 Nov 2015 01:27:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58FF52407 for ; Tue, 10 Nov 2015 01:27:21 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1447118747.ef9efcec16316093ea9724c0da066cb3ce65f9de.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/procps/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/procps/procps-3.3.11-r2.ebuild X-VCS-Directories: sys-process/procps/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ef9efcec16316093ea9724c0da066cb3ce65f9de X-VCS-Branch: master Date: Tue, 10 Nov 2015 01:27:21 +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: 193c3147-b738-49cd-b52c-f203f9e50917 X-Archives-Hash: 84df137502c4e00e8f8326689c39a99c commit: ef9efcec16316093ea9724c0da066cb3ce65f9de Author: William Hubbs gentoo org> AuthorDate: Tue Nov 10 01:25:47 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Nov 10 01:25:47 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef9efcec sys-process/procps: fix eprefix quoting sys-process/procps/procps-3.3.11-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-process/procps/procps-3.3.11-r2.ebuild b/sys-process/procps/procps-3.3.11-r2.ebuild index 4bd14da..fa9d6fc 100644 --- a/sys-process/procps/procps-3.3.11-r2.ebuild +++ b/sys-process/procps/procps-3.3.11-r2.ebuild @@ -43,8 +43,8 @@ src_prepare() { src_configure() { econf \ - --bindir='${EPREFIX}'/bin \ - --sbindir='${EPREFIX}'/sbin \ + --bindir="${EPREFIX}"/bin \ + --sbindir="${EPREFIX}"/sbin \ --docdir='$(datarootdir)'/doc/${PF} \ $(use_enable modern-top) \ $(use_with ncurses) \