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 E7180138216 for ; Sun, 1 May 2016 23:52:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 029AE224041; Sun, 1 May 2016 23:52:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB0DB224041 for ; Sun, 1 May 2016 23:52:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 508803409D0 for ; Sun, 1 May 2016 23:52:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FB9679 for ; Sun, 1 May 2016 23:52:01 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1462146729.8da39130c7e90e06481a6606d798c1ff65291e46.blueness@gentoo> Subject: [gentoo-commits] proj/hardened-dev:master commit in: eclass/ X-VCS-Repository: proj/hardened-dev X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8da39130c7e90e06481a6606d798c1ff65291e46 X-VCS-Branch: master Date: Sun, 1 May 2016 23:52:01 +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: 20fabe30-c0ce-4051-b240-79033cf214ae X-Archives-Hash: 8550fc8dd9a83a86fb30f62e2c329edd commit: 8da39130c7e90e06481a6606d798c1ff65291e46 Author: Anthony G. Basile gentoo org> AuthorDate: Sun May 1 23:52:09 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun May 1 23:52:09 2016 +0000 URL: https://gitweb.gentoo.org/proj/hardened-dev.git/commit/?id=8da39130 Revert "toolchain.eclass: sanely check if there are spec files to be installed" This reverts commit c5c2daa6ff0970a37747c58328df38b4ce57207f. Zorry already addressed this issue in the previous commit. eclass/toolchain.eclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 40b2cf9..247dcee 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1954,11 +1954,7 @@ copy_minispecs_gcc_specs() { fi create_gcc_env_entry vanilla insinto ${LIBPATH} - # Only doins if there are actually spec files in "${WORKDIR}"/specs/ - local SPECSDIR="${WORKDIR}"/specs/ - if [[ "$(ls -A ${SPECSDIR})" ]]; then - doins "${SPECSDIR}"/*.specs || die "failed to install specs" - fi + doins "${WORKDIR}"/specs/*.specs || die "failed to install specs" # Build system specs file which, if it exists, must be a complete set of # specs as it completely and unconditionally overrides the builtin specs. if ! tc_version_is_at_least 4.4 ; then