diff options
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): |