diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-07-09 21:04:44 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-07-09 21:04:44 +0000 |
commit | e325550c6cfefec96a70693ceaddcbf94d3546b0 (patch) | |
tree | 8570b15f77909003471800fa809ac2bec9a67646 /profiles | |
parent | Fix building with uClibc wrt #374595 by Pinkbyte. Revision bump to avoid prob... (diff) | |
download | gentoo-2-e325550c6cfefec96a70693ceaddcbf94d3546b0.tar.gz gentoo-2-e325550c6cfefec96a70693ceaddcbf94d3546b0.tar.bz2 gentoo-2-e325550c6cfefec96a70693ceaddcbf94d3546b0.zip |
send type output to devnull otherwise we get garbage output
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default/bsd/fbsd/profile.bashrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc index 3b2b00b8b773..918a07fec733 100644 --- a/profiles/default/bsd/fbsd/profile.bashrc +++ b/profiles/default/bsd/fbsd/profile.bashrc @@ -1,14 +1,14 @@ #!/bin/bash # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.10 2011/07/08 15:06:22 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.11 2011/07/09 21:04:44 aballier Exp $ alias make=gmake alias patch=gpatch alias sed=gsed alias awk=gawk # findutils stuff -type -P gfind && alias find=gfind -type -P gxargs && alias xargs=gxargs +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. # while most should work with BSD's bourne just fine, the extra scripts |