aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-05-22 13:39:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-05-22 13:39:04 -0400
commitd03c3421095aff2bf50874773c779d228b68987d (patch)
tree7f6bc3edc10ae4f6031bc10c270d0d22f42db560
parent76f189d63bf620461188c1efc800c8119c30292b (diff)
downloadipsutils-d03c3421095aff2bf50874773c779d228b68987d.tar.gz
Added missing DEPENDSOLVE key to env_meta dictionary.
-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'