Received: by mail.netbsd.org (Postfix, from userid 605) id A2F7A84E84; Thu, 6 Apr 2023 11:39:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D2B8384D8D for ; Thu, 6 Apr 2023 11:39:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id O5o0wRzjWQcK for ; Thu, 6 Apr 2023 11:39:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2B64784CE3 for ; Thu, 6 Apr 2023 11:39:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 16D80FA81; Thu, 6 Apr 2023 11:39:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16807811677920" MIME-Version: 1.0 Date: Thu, 6 Apr 2023 11:39:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/gcc10 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230406113927.16D80FA81@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16807811677920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 6 11:39:27 UTC 2023 Modified Files: pkgsrc/lang/gcc10: options.mk Log Message: gcc10: simplify opsys match To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/gcc10/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16807811677920 Content-Disposition: inline Content-Length: 829 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc10/options.mk diff -u pkgsrc/lang/gcc10/options.mk:1.3 pkgsrc/lang/gcc10/options.mk:1.4 --- pkgsrc/lang/gcc10/options.mk:1.3 Wed Mar 29 20:44:52 2023 +++ pkgsrc/lang/gcc10/options.mk Thu Apr 6 11:39:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2023/03/29 20:44:52 joerg Exp $ +# $NetBSD: options.mk,v 1.4 2023/04/06 11:39:26 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.${GCC_PKGNAME} PKG_SUPPORTED_OPTIONS= nls gcc-inplace-math gcc-c++ gcc-fortran \ @@ -27,7 +27,7 @@ PKG_SUGGESTED_OPTIONS+= always-libgcc ### Determine if multilib is avalible. ### MULTILIB_SUPPORTED?= unknown -.if !empty(MACHINE_PLATFORM:MLinux-*-x86_64) +.if ${MACHINE_PLATFORM:MLinux-*-x86_64} . if exists(/usr/include/x86_64-linux-gnu/gnu) _GNU_INCLUDE_DIR= /usr/include/x86_64-linux-gnu/gnu . else --_----------=_16807811677920--