Skip to content

Commit

Permalink
BUILDBOT: Disable stripping on tools builds.
Browse files Browse the repository at this point in the history
This step fails currently as the command includes the executable name.
  • Loading branch information
digitall committed Nov 24, 2012
1 parent 1690b6c commit d14ebed
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions config/master.cfg
Expand Up @@ -1184,9 +1184,10 @@ for name, config in scumm_platforms_master.items():
platform_disttarget = ""
if config.has_key("disttarget"):
platform_disttarget = config["disttarget"]
else:
if config.has_key("strip"):
f.addStep(scumm.Strip(command = config["strip"]))
# FIXME - Stripping disabled as the command includes executable name
#else:
# if config.has_key("strip"):
# f.addStep(scumm.Strip(command = config["strip"]))

f.addStep(scumm.Package(disttarget = platform_disttarget,
srcpath = "../../src-tools-master/src/",
Expand Down

0 comments on commit d14ebed

Please sign in to comment.