diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2015-10-01 00:22:11 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2015-10-01 00:22:11 -0700 |
commit | 50e08a90d5e9fec332603b11cc3ad7e03fe1552c (patch) | |
tree | 9292e7bc86ac655afe562b45f9a76a1da4de57a4 /attoconf/lib | |
parent | 621af313a8dfe46df159766fbe158af5dd8cb6ad (diff) | |
download | attobuild-50e08a90d5e9fec332603b11cc3ad7e03fe1552c.tar.gz attobuild-50e08a90d5e9fec332603b11cc3ad7e03fe1552c.tar.bz2 attobuild-50e08a90d5e9fec332603b11cc3ad7e03fe1552c.tar.xz attobuild-50e08a90d5e9fec332603b11cc3ad7e03fe1552c.zip |
Fix legacy compatibility again
Diffstat (limited to 'attoconf/lib')
-rw-r--r-- | attoconf/lib/install.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/attoconf/lib/install.py b/attoconf/lib/install.py index 3dc7f5b..26e515c 100644 --- a/attoconf/lib/install.py +++ b/attoconf/lib/install.py @@ -152,8 +152,12 @@ class Install(ClassyProject): self.set_package(package, package_name) def set_package(self, package, package_name): + if package is not None: + assert self.package is None self.package = package self.package_name = package_name + if package is not None: + self._do_jiggle() def general(self): super(Install, self).general() |