diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-07 13:32:22 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-07 13:32:22 -0700 |
commit | 74db20592869396232ca35456f4e2c63c7d937b3 (patch) | |
tree | 5ee7a7a1692d1a2f1b967f4520f261a04fd36d00 /demo-project | |
parent | d0b375cdb74aaf9b93139621e7587f5fa45dcad8 (diff) | |
download | attobuild-74db20592869396232ca35456f4e2c63c7d937b3.tar.gz attobuild-74db20592869396232ca35456f4e2c63c7d937b3.tar.bz2 attobuild-74db20592869396232ca35456f4e2c63c7d937b3.tar.xz attobuild-74db20592869396232ca35456f4e2c63c7d937b3.zip |
Remove inferior package version, fix makefile format
The problem with version is that it breaks remake without reconf.
Version should instead be handled by the makefile.
Diffstat (limited to 'demo-project')
-rwxr-xr-x | demo-project/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demo-project/configure b/demo-project/configure index ce2cc45..47022c2 100755 --- a/demo-project/configure +++ b/demo-project/configure @@ -22,8 +22,8 @@ from __future__ import print_function, division, absolute_import import os import sys -from attoconf.version import require_version, part_version -require_version(0, 5) +from attoconf.version import require_version +require_version(0, 6) from attoconf.classy import add_slots from attoconf.lib.c import C @@ -66,7 +66,7 @@ class Configuration(C, Install, ConfigHash, Make): def main(): proj = Configuration(os.path.dirname(sys.argv[0])) - proj.set_package('attoconf-demo', part_version, 'Demo project for attoconf') + proj.set_package('attoconf-demo', 'Demo project for attoconf') proj.jiggle() build = proj.build('.') build.configure(sys.argv[1:], os.environ) |