Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use environment.plist to stop completely' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use environment.plist to stop completely
Authored by: sardu_mac on Jan 09, '03 01:45:50PM
Mac OS X will read environment variables from ~/.MacOSX/environment.plist if it exists.


The format is the same as all .plist files, so you can use Property List Editor if you have Developer Tools installed.
Sample file below.



<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DYLD_NO_FIX_PREBINDING</key>
<string></string>
<key>LC_ALL</key>
<string>C</string>
</dict>
</plist>



The LC_ALL I have in there is for perl 5.8.0, ignore it (or leave it in if you're running 5.8.0).

[ Reply to This | # ]