Just installed Lion today and my PATH env variable is no longer being set by ~/.MacOSX/environment.plist. Did something change? Can't seem to find any info on that or how to fix. Any ideas?

Here's the contents of the PLIST:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>PATH</key>
    <string>/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11/bin:/Users/mdi/bin</string>
</dict>
</plist>
link|improve this question

You have already using Lion in development environment. Real fast. – Shivan Raptor Jul 21 '11 at 1:44
feedback

6 Answers

up vote 3 down vote accepted

Use ~/.launchd.conf instead (see man launchctl).

See this answer for details.

link|improve this answer
Thanks but this doesn't seem to be working either. – Michael Irwin Jul 21 '11 at 3:51
Actually I take that back. It is working but it is NOT setting my PATH in a shell. So if I set the path in ~/.launchd.conf and ~/.bash_profile everything is back to normal. Thanks! – Michael Irwin Jul 21 '11 at 9:10
Actually, I spoke too soon again. This does not set PATH for GUI apps. I've tried all sorts of things to get this to work and nothing seems to do it. Giving up for now... – Michael Irwin Jul 22 '11 at 17:44
~/.launchd.conf is not read on login or startup. this only works if I run cat ~/.launchd.conf | launchctl in Terminal. When I look at man launchd.conf in Lion 10.7.3 it says: $HOME/.launchd.conf Your launchd configuration file (currently unsupported) – uncreative Apr 10 at 22:44
feedback

I ran into the same issue today. I called Apple Support and after being escalated to a Senior Advisor, then to her supervisor, I was told that they no longer support environment.plist and that there is no officially-supported method for defining environment variables in Mac OS 10.7.

link|improve this answer
4  
I wonder WTF they were thinking by doing this? – Michael Irwin Jul 22 '11 at 17:45
This is absolutely retarded. Sometimes, Apple is so asinine/short-sighted. – alex gray Sep 10 '11 at 16:03
environment.plist working perfectly well here with Lion, and it's still referenced in Apple's developer docs: developer.apple.com/library/mac/#documentation/MacOSX/… . I'm always very suspicious of things supposedly said by "some guy at Apple Support". – mluisbrown Oct 18 '11 at 11:40
I am suspicious as well, especially since the support people were not even aware of environment.plist in the first place (hence the escalation to the senior advisor's supervisor). However, the developer documentation listed above is dated 2009, and the latest version of XCode does not appear to include the Property List Editor app anymore (although I did find the one in my old developer tools folder). If it's working on your system, can you tell me what the permissions are on it? Mine are -rw-r--r--@, and the file belongs to my user and group (as in, the group whose name is my username) – sworisbreathing Oct 24 '11 at 16:20
feedback

Whether or not Apple officially supports this mechanism, the current tech note Technical Q&A QA1067 is still accurate. An important caveat, however, is absent: the Property List needs to be in binary format. Xcode 4, when used to create new Property Lists, emits files that are in the text format (regardless of the type specified in File Inspector). So you either need to convert the saved file using 'plutil':

plutil -convert binary1 environment.plist

or use 'defaults' to write out a new, template file that you can edit in Xcode (which will honor the original binary format when saving):

defaults write defaults write $HOME/.MacOSX/environment Root "1"
link|improve this answer
feedback

Weird, cause here it works flawlessly. I had to setup a JRI environment to access R internals from a Java applications, and updating the .profile was not enough to have NetBeans catching all env vars.

Creating the environment.plist file did the the trick.

For reference this the file's content:

Malessere:~ xxxxx$ cat .MacOSX/environment.plist 
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
   <plist version="1.0">
   <dict>
      <key>DYLD_LIBRARY_PATH</key>
      <string>/Users/xxxxx/lib/jri-2.13</string>
      <key>R_HOME</key>
      <string>/Library/Frameworks/R.framework/Resources</string>
   </dict>
   </plist>
link|improve this answer
feedback

You can edit your ~/.MacOSX/environment.plist with this example of $PATH:

defaults write $HOME/.MacOSX/environment PATH
"/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin:/opt/local/bin"

This will rewrite your ~/.MacOSX/environment.plist

or edit this file:

/etc/patchs

to change the order of system variables.

link|improve this answer
None of this works. On my system, at least. – Michael Irwin Jan 20 at 18:38
feedback

Do it like brew and create a symlink in /usr/local/bin/. Works perfectly for me and is IMO a more unix-like solution where everything is a file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.