summaryrefslogtreecommitdiff
path: root/attoconf/classy.py
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-06 17:37:04 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-06 17:37:04 -0700
commit9fb3d2759f920bb6714ec6471a5c932720c6903a (patch)
tree9119ddcfdaa0f46dde05bb5bba0ee44c336c12bc /attoconf/classy.py
parent93215a82b4ebda6d322f75023cfea4cc7d4904d2 (diff)
downloadattobuild-9fb3d2759f920bb6714ec6471a5c932720c6903a.tar.gz
attobuild-9fb3d2759f920bb6714ec6471a5c932720c6903a.tar.bz2
attobuild-9fb3d2759f920bb6714ec6471a5c932720c6903a.tar.xz
attobuild-9fb3d2759f920bb6714ec6471a5c932720c6903a.zip
Write vars to makefile in order
Diffstat (limited to 'attoconf/classy.py')
-rw-r--r--attoconf/classy.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/attoconf/classy.py b/attoconf/classy.py
index c7ecf5e..7a16372 100644
--- a/attoconf/classy.py
+++ b/attoconf/classy.py
@@ -42,16 +42,25 @@ class ClassyProject(Project):
super(ClassyProject, self).__init__(srcdir)
def jiggle(self):
+ self.order.append(None)
self.general()
+ self.order.append(None)
self.paths()
+ self.order.append(None)
self.arches()
+ self.order.append(None)
self.vars()
+ self.order.append(None)
self.features()
+ self.order.append(None)
self.packages()
+ self.order.append(None)
if 0:
self.tests()
+ self.order.append(None)
self.post()
+ self.order.append(None)
def general(self):
''' Registration hook for general options (usually unneeded).