diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 17:18:41 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 17:18:41 -0400 |
commit | 9598d8d6e331a7feb9504c3966b95db4e5c1eea9 (patch) | |
tree | e855a51d5172515451d8b1aaf7ea26edd98d79a4 | |
parent | 3932235390ca826304a3c19788c59d6628ff7604 (diff) | |
download | ipsutils-9598d8d6e331a7feb9504c3966b95db4e5c1eea9.tar.gz |
Add linux to "supported" platforms
-rwxr-xr-x | ipsbuild-setuptree.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ipsbuild-setuptree.py b/ipsbuild-setuptree.py index de134aa..6b0d0d8 100755 --- a/ipsbuild-setuptree.py +++ b/ipsbuild-setuptree.py @@ -19,7 +19,9 @@ import sys home = None try: - if sys.platform == 'linux2' or sys.platform == 'sunos5': + if sys.platform == 'linux2' \ + or sys.platform == 'linux' \ + or sys.platform == 'sunos5': home = os.path.normpath(os.environ['HOME']) elif sys.platform == 'win32': home = os.path.normpath(os.environ['USERPROFILE']) |