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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E302B138330 for ; Tue, 11 Oct 2016 13:48:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F792E0C87; Tue, 11 Oct 2016 13:46:15 +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 8658EE0C87 for ; Tue, 11 Oct 2016 13:46:15 +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 3354834123F for ; Tue, 11 Oct 2016 13:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E33932F2 for ; Tue, 11 Oct 2016 13:46:06 +0000 (UTC) From: "Yuta SATOH" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yuta SATOH" Message-ID: <1476193557.03b1fb456466b0b3440996123486d5b8cd22b4a2.yuta_satoh@gentoo> Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: eclass/ X-VCS-Repository: proj/gentoo-bsd X-VCS-Files: eclass/freebsd.eclass X-VCS-Directories: eclass/ X-VCS-Committer: yuta_satoh X-VCS-Committer-Name: Yuta SATOH X-VCS-Revision: 03b1fb456466b0b3440996123486d5b8cd22b4a2 X-VCS-Branch: master Date: Tue, 11 Oct 2016 13:46:06 +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: 9561e42d-1eb3-43a2-b420-05ca77f163d7 X-Archives-Hash: 416ef2226a37328ef27db27803c6a7e1 commit: 03b1fb456466b0b3440996123486d5b8cd22b4a2 Author: Yuta SATOH gmail com> AuthorDate: Tue Oct 11 13:45:57 2016 +0000 Commit: Yuta SATOH gentoo gr jp> CommitDate: Tue Oct 11 13:45:57 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=03b1fb45 freebsd.eclass: Always disable DEBUG_FILES= eclass/freebsd.eclass | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index 5d4562a..8f6b204 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.eclass @@ -80,7 +80,7 @@ if [[ ${MY_PV} != *9999* ]] && version_is_at_least 10.0 ${RV} ; then SRC_URI="mirror://freebsd/releases/i386/${DL_PV}/src.txz -> freebsd-src-${MY_PV}.tar.xz" fi -IUSE="debug profile" +IUSE="profile" #unalias -a alias install-info='/usr/bin/bsdinstall-info' @@ -230,7 +230,8 @@ freebsd_src_compile() { if ! use profile ; then mymakeopts="${mymakeopts} WITHOUT_PROFILE= " fi - use debug || mymakeopts="${mymakeopts} WITHOUT_DEBUG_FILES= " + # Disable debugging info, use FEATURES=splitdebug instead. + mymakeopts="${mymakeopts} WITHOUT_DEBUG_FILES= " # Test does not support yet. mymakeopts="${mymakeopts} WITHOUT_TESTS= " # Force set SRCTOP. @@ -305,7 +306,8 @@ freebsd_src_install() { if ! use profile ; then mymakeopts="${mymakeopts} WITHOUT_PROFILE= " fi - use debug || mymakeopts="${mymakeopts} WITHOUT_DEBUG_FILES= " + # Disable debugging info, use FEATURES=splitdebug instead. + mymakeopts="${mymakeopts} WITHOUT_DEBUG_FILES= " # Test does not support yet. mymakeopts="${mymakeopts} WITHOUT_TESTS= " # Force set SRCTOP.