aboutsummaryrefslogtreecommitdiff
path: root/ipsutils/env.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsutils/env.py')
-rw-r--r--ipsutils/env.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipsutils/env.py b/ipsutils/env.py
index d1cf0d9..e2f7e88 100644
--- a/ipsutils/env.py
+++ b/ipsutils/env.py
@@ -56,7 +56,8 @@ class Environment(config.Config):
'METADATA': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.mog'),
'FILES': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.p5m.1'),
'TRANS': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.p5m.2'),
- 'DEPENDS': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.p5m.3')
+ 'DEPENDS': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.p5m.3'),
+ 'DEPENDSOLVE': os.path.join(self.env_pkg['BUILDROOT'], self.complete_name + '.p5m.3.res')
}
# Generic utility mapping for platform specific configuration.
# Note: This is mainly to test script functionality on different platforms
@@ -72,7 +73,7 @@ class Environment(config.Config):
'pkgfmt': 'pkgfmt'
}
- # Oracle tar is ancient. GNU tar is preferrred.
+ # Oracle Solaris tar is ancient. GNU tar is preferrred.
if sys.platform == 'sunos5':
self.tool['tar'] = 'gtar'