summaryrefslogtreecommitdiff
path: root/demo-project/configure
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-06 16:29:24 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-06 16:31:11 -0700
commit93215a82b4ebda6d322f75023cfea4cc7d4904d2 (patch)
treee8157186ca7026807fb602921b96b793a16314a0 /demo-project/configure
parent7b5f69de3f7b52b718507fe16c2560901e48a70c (diff)
downloadattobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.gz
attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.bz2
attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.xz
attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.zip
Add config hash
Diffstat (limited to 'demo-project/configure')
-rwxr-xr-xdemo-project/configure3
1 files changed, 2 insertions, 1 deletions
diff --git a/demo-project/configure b/demo-project/configure
index a3e49ee..c26e557 100755
--- a/demo-project/configure
+++ b/demo-project/configure
@@ -28,10 +28,11 @@ require_version(0, 2)
from attoconf.classy import add_slots
from attoconf.lib.c import C
from attoconf.lib.install import Install
+from attoconf.lib.config_hash import ConfigHash
from attoconf.lib.make import Make
@add_slots
-class Configuration(C, Install, Make):
+class Configuration(C, Install, ConfigHash, Make):
# usually you'll only have vars, features, and packages
# the rest should only be inherited
def __init__(self, srcdir):