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 AAF8E1388C0 for ; Sun, 28 Feb 2016 17:22:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26DF021C001; Sun, 28 Feb 2016 17:22:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C790921C001 for ; Sun, 28 Feb 2016 17:22:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A26CD3409C8 for ; Sun, 28 Feb 2016 17:22:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 854EC16C4 for ; Sun, 28 Feb 2016 17:21:59 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1456680112.aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/default/bsd/fbsd/profile.bashrc X-VCS-Directories: profiles/default/bsd/fbsd/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d X-VCS-Branch: master Date: Sun, 28 Feb 2016 17:21:59 +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: b69c69ca-c7b0-4c2e-acfc-68dff0df2add X-Archives-Hash: cb13d8272f7a570e19f38755177d1bc3 commit: aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d Author: Alexis Ballier gentoo org> AuthorDate: Sun Feb 28 17:21:42 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sun Feb 28 17:21:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6297e7 profiles/default/bsd/fbsd/profile.bashrc: alias gnu tools only if present. This helps when building from linux. profiles/default/bsd/fbsd/profile.bashrc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc index 2293f49..6ddf594 100644 --- a/profiles/default/bsd/fbsd/profile.bashrc +++ b/profiles/default/bsd/fbsd/profile.bashrc @@ -2,12 +2,11 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Id$ -alias make=gmake -alias patch=gpatch -alias sed=gsed -alias awk=gawk -# findutils stuff -type -P gfind > /dev/null && alias find=gfind +type -P gmake > /dev/null && alias make=gmake +type -P gpath > /dev/null && alias patch=gpatch +type -P gsed > /dev/null && alias sed=gsed +type -P gaws > /dev/null && alias awk=gawk +type -P gfind > /dev/null && alias find=gfind type -P gxargs > /dev/null && alias xargs=gxargs # Attempt to point the default SHELL used by configure scripts to bash.