Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
Date: Sun, 28 Feb 2016 17:22:05
Message-Id: 1456680112.aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d.aballier@gentoo
1 commit: aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 17:21:42 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 17:21:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6297e7
7
8 profiles/default/bsd/fbsd/profile.bashrc: alias gnu tools only if present. This helps when building from linux.
9
10 profiles/default/bsd/fbsd/profile.bashrc | 11 +++++------
11 1 file changed, 5 insertions(+), 6 deletions(-)
12
13 diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc
14 index 2293f49..6ddf594 100644
15 --- a/profiles/default/bsd/fbsd/profile.bashrc
16 +++ b/profiles/default/bsd/fbsd/profile.bashrc
17 @@ -2,12 +2,11 @@
18 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
19 # $Id$
20
21 -alias make=gmake
22 -alias patch=gpatch
23 -alias sed=gsed
24 -alias awk=gawk
25 -# findutils stuff
26 -type -P gfind > /dev/null && alias find=gfind
27 +type -P gmake > /dev/null && alias make=gmake
28 +type -P gpath > /dev/null && alias patch=gpatch
29 +type -P gsed > /dev/null && alias sed=gsed
30 +type -P gaws > /dev/null && alias awk=gawk
31 +type -P gfind > /dev/null && alias find=gfind
32 type -P gxargs > /dev/null && alias xargs=gxargs
33
34 # Attempt to point the default SHELL used by configure scripts to bash.