summaryrefslogtreecommitdiff
path: root/attoconf/lib
diff options
context:
space:
mode:
Diffstat (limited to 'attoconf/lib')
-rw-r--r--attoconf/lib/install.py4
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()