Gentoo Archives: gentoo-commits

From: "Javier Villavicencio (the_paya)" <the_paya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
Date: Thu, 01 Apr 2010 08:20:27
Message-Id: E1NxFdS-0007Eu-KT@stork.gentoo.org
1 the_paya 10/04/01 08:20:18
2
3 Modified: profile.bashrc
4 Log:
5 Fix several scripts errors that expect configure setting bash as the running shell.
6
7 Revision Changes Path
8 1.6 profiles/default/bsd/fbsd/profile.bashrc
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.5&r2=1.6
13
14 Index: profile.bashrc
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- profile.bashrc 16 Mar 2010 02:25:33 -0000 1.5
21 +++ profile.bashrc 1 Apr 2010 08:20:18 -0000 1.6
22 @@ -1,12 +1,17 @@
23 #!/bin/bash
24 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.5 2010/03/16 02:25:33 the_paya Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.6 2010/04/01 08:20:18 the_paya Exp $
27
28 alias make=gmake
29 alias patch=gpatch
30 alias sed=gsed
31 alias awk=gawk
32
33 +# Attempt to point the default SHELL used by configure scripts to bash.
34 +# while most should work with BSD's bourne just fine, the extra scripts
35 +# used by some applications (specially test scripts) use way too many bashisms.
36 +export CONFIG_SHELL="/bin/bash"
37 +
38 # Hack to avoid every package that uses libiconv/gettext
39 # install a charset.alias that will collide with libiconv's one
40 # See bugs 169678, 195148 and 256129.