Bug 1277483 - Another followup to fix bustage.

This commit is contained in:
Ms2ger
2016-06-07 11:00:31 +02:00
parent 67dded9d3e
commit 9ad39110bc
2 changed files with 3 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ def may_strip(path):
Return whether strip() should be called
'''
from buildconfig import substs
return not substs['PKG_SKIP_STRIP']
return not substs.get('PKG_SKIP_STRIP')
def strip(path):