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 C72F713829C for ; Thu, 2 Jun 2016 15:56:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ED4A254020; Thu, 2 Jun 2016 15:56:47 +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 77099254024 for ; Thu, 2 Jun 2016 15:56:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 44E6E340E8D for ; Thu, 2 Jun 2016 15:56:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BC5D1B8A for ; Thu, 2 Jun 2016 15:56:42 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1464881518.8b1b79e02cc36bc6f2b5583db6aeea333fb8d59b.vapier@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/site/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/site/config.site X-VCS-Directories: wrappers/site/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 8b1b79e02cc36bc6f2b5583db6aeea333fb8d59b X-VCS-Branch: master Date: Thu, 2 Jun 2016 15:56:42 +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: a8b7ca68-8fd8-425d-9c7e-cfed6258bf5a X-Archives-Hash: 89df202d6d14d0b1c4f79d563b250601 commit: 8b1b79e02cc36bc6f2b5583db6aeea333fb8d59b Author: Andrew Wilcox Wilcox-Tech com> AuthorDate: Sun Jul 5 17:55:27 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Jun 2 15:31:58 2016 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=8b1b79e0 config.site: add musl libc support This way you can support glibc and musl targets on the same system and not have to worry about switching out site scripts. URL: https://bugs.gentoo.org/554032 wrappers/site/config.site | 1 + 1 file changed, 1 insertion(+) diff --git a/wrappers/site/config.site b/wrappers/site/config.site index 94f9d87..39cadf8 100755 --- a/wrappers/site/config.site +++ b/wrappers/site/config.site @@ -30,6 +30,7 @@ config_site_names() { case ${CHOST} in *-linux-uclibc*) sites="${sites} linux-uclibc ${site_arch}-linux-uclibc" ;; *-linux-gnu*) sites="${sites} linux-gnu ${site_arch}-linux-gnu" ;; + *-linux-musl*) sites="${sites} linux-musl ${site_arch}-linux-musl" ;; esac case ${CHOST} in