diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-04-19 19:11:13 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-04-19 19:11:13 -0400 |
commit | 7255e30dda1daaa14a44e1c9e3c17da85f57f84b (patch) | |
tree | dc4731d5316b533fc3e3402de430b54924edaca0 | |
parent | 40206e4f194a4fb0722c8b2e34799a2aecfec45b (diff) | |
download | ipsutils-7255e30dda1daaa14a44e1c9e3c17da85f57f84b.tar.gz |
Change platform dep to sunos5
-rwxr-xr-x[-rw-r--r--] | ipsbuild-setuptree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsbuild-setuptree.py b/ipsbuild-setuptree.py index d0fd72e..8c2f11b 100644..100755 --- a/ipsbuild-setuptree.py +++ b/ipsbuild-setuptree.py @@ -18,7 +18,7 @@ import sys home = None try: - if sys.platform == 'linux2' or sys.platform == 'darwin': + if sys.platform == 'linux2' or sys.platform == 'sunos5': home = os.path.normpath(os.environ['HOME']) elif sys.platform == 'win32': home = os.path.normpath(os.environ['USERPROFILE']) |