Backed out changeset 6134b92d1b08 (bug 1277483)

This commit is contained in:
Carsten "Tomcat" Book 2016-06-07 11:46:16 +02:00
parent a9cbc7e871
commit 733eeabb87
2 changed files with 2 additions and 3 deletions

View File

@ -622,7 +622,6 @@ option('--disable-install-strip',
@depends('--disable-install-strip')
def disable_install_strip(value):
if not value:
return True
return not value
set_config('PKG_SKIP_STRIP', disable_install_strip)

View File

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