Files
pyinstaller/buildtests/test3.py
T
giovannibajo b98a53df92 Imported Python Installer 5b5
git-svn-id: http://svn.pyinstaller.org/trunk@2 8dd32b29-ccff-0310-8a9a-9233e24343b1
2005-09-02 17:15:02 +00:00

8 lines
272 B
Python

print "test3 - test 'f' option (just show os.environ)"
import os, sys
if sys.platform[:3] == 'win':
print " sorry, no use / need for the 'f' option on Windows"
else:
print " LD_LIBRARY_PATH %s" % os.environ.get('LD_LIBRARY_PATH', '<None!>')
print "test3 complete"