diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-06 16:29:24 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-06 16:31:11 -0700 |
commit | 93215a82b4ebda6d322f75023cfea4cc7d4904d2 (patch) | |
tree | e8157186ca7026807fb602921b96b793a16314a0 /attoconf/lib/arches.py | |
parent | 7b5f69de3f7b52b718507fe16c2560901e48a70c (diff) | |
download | attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.gz attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.bz2 attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.tar.xz attobuild-93215a82b4ebda6d322f75023cfea4cc7d4904d2.zip |
Add config hash
Diffstat (limited to 'attoconf/lib/arches.py')
-rw-r--r-- | attoconf/lib/arches.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/attoconf/lib/arches.py b/attoconf/lib/arches.py index 595b396..007f879 100644 --- a/attoconf/lib/arches.py +++ b/attoconf/lib/arches.py @@ -27,14 +27,14 @@ def host(build, HOST): if HOST is None: BUILD, origin = build.vars['BUILD'] if origin != 'default': - origin = 'derived from BUILD' + origin = 'derived' build.vars['HOST'] = (BUILD, origin) def target(build, TARGET): if TARGET is None: HOST, origin = build.vars['HOST'] if origin != 'default': - origin = 'derived from HOST' + origin = 'derived' build.vars['TARGET'] = (HOST, origin) class Arches2(ClassyProject): |