summaryrefslogtreecommitdiff
path: root/morphlib/cachekeycomputer.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-06-02 13:43:41 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-06-12 08:56:43 +0000
commitd95bd9ec7cdf78ee74c69ebe9df07d418bb1e5db (patch)
tree9f6004ff3732c52f14d9f4b48f1aead8edc9a094 /morphlib/cachekeycomputer.py
parentacdc5ceb0f8d7f1a2b21ed121b4139c67b52fb30 (diff)
downloadmorph-d95bd9ec7cdf78ee74c69ebe9df07d418bb1e5db.tar.gz
cachekey/builder: Use and cache strip commands
Change-Id: I19a6c31979aa36ff3c03f41e16e2d25ef407533b
Diffstat (limited to 'morphlib/cachekeycomputer.py')
-rw-r--r--morphlib/cachekeycomputer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/cachekeycomputer.py b/morphlib/cachekeycomputer.py
index fa6662cb..22f42aa0 100644
--- a/morphlib/cachekeycomputer.py
+++ b/morphlib/cachekeycomputer.py
@@ -106,7 +106,8 @@ class CacheKeyComputer(object):
# include {pre-,,post-}{configure,build,test,install}-commands
# in morphology key
for prefix in ('pre-', '', 'post-'):
- for cmdtype in ('configure', 'build', 'test', 'install'):
+ for cmdtype in ('configure', 'build', 'test',
+ 'install', 'strip'):
cmd_field = prefix + cmdtype + '-commands'
if cmd_field in morphology:
keys[cmd_field] = morphology[cmd_field]