From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 78C4A158013 for ; Sun, 3 Dec 2023 10:10:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB6DD2BC01A; Sun, 3 Dec 2023 10:10:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1C902BC01A for ; Sun, 3 Dec 2023 10:10:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7747B335C34 for ; Sun, 3 Dec 2023 10:10:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C52B7A66 for ; Sun, 3 Dec 2023 10:10:39 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1701598208.2368a1f82ef4dcef2bd107714a5c81257c913b0d.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: / X-VCS-Repository: proj/portage X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 2368a1f82ef4dcef2bd107714a5c81257c913b0d X-VCS-Branch: prefix Date: Sun, 3 Dec 2023 10:10:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fe66d285-d055-4742-a323-be7ed34e63a6 X-Archives-Hash: 27e198f6bbeec9b010423ba0c906c3c6 commit: 2368a1f82ef4dcef2bd107714a5c81257c913b0d Author: Fabian Groffen gentoo org> AuthorDate: Sun Dec 3 10:10:08 2023 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Dec 3 10:10:08 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=2368a1f8 configure: drop --with-extra-path handling EXTRA_PATH is obsolete for a while. Signed-off-by: Fabian Groffen gentoo.org> configure.ac | 6 ------ 1 file changed, 6 deletions(-) diff --git a/configure.ac b/configure.ac index 9def5210cd..12b669efb3 100644 --- a/configure.ac +++ b/configure.ac @@ -97,18 +97,12 @@ then PORTAGE_EPREFIX=`${PREFIX_PORTAGE_PYTHON} -c "import os; print(os.path.normpath('$PORTAGE_EPREFIX'))"` fi -AC_ARG_WITH(extra-path, -AS_HELP_STRING([--with-extra-path],[specify additional PATHs available to the portage build environment (use with care)]), -[EXTRA_PATH="$withval"], -[EXTRA_PATH=""]) - AC_SUBST(portageuser) AC_SUBST(portagegroup) AC_SUBST(rootuser) AC_SUBST(rootuid) AC_SUBST(rootgid) AC_SUBST(PORTAGE_EPREFIX) -AC_SUBST(EXTRA_PATH) AC_SUBST(PORTAGE_BASE,['${exec_prefix}/lib/portage']) AC_SUBST(PORTAGE_RM)