Bug 789011

Summary: ~/bin should be added to the path if it exists
Product: [Fedora] Fedora Reporter: Allison Karlitskaya <allison.karlitskaya>
Component: distributionAssignee: Bill Nottingham <notting>
Status: CLOSED NOTABUG QA Contact: Bill Nottingham <notting>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: dennis, rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-02-09 20:01:18 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Allison Karlitskaya 2012-02-09 15:21:40 UTC
Debian machines have a long history of checking for ~/bin and adding it to the path if it exists.  This is a great place to put tools like jhbuild.

Fedora doesn't do this.  Perhaps it should.  It would make instructions about how to install and use jhbuild quite a lot easier.

Comment 1 Dennis Gilmore 2012-02-09 20:01:18 UTC
/etc/skel/.bash_profile which is the standard .bash_profile template in fedora contains 

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
	. ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH


Its already added to the users $PATH though it is added at the end.

Comment 2 Allison Karlitskaya 2012-02-09 22:30:44 UTC
lulz.  I saw that there and I just assumed that I had added that for myself.

Sorry for the noise.