Skip to content

Commit

Permalink
wscript: fix build errors on non-mac
Browse files Browse the repository at this point in the history
  • Loading branch information
wrl committed Jun 3, 2015
1 parent d08df92 commit b7d6d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def fake_install_path(self):
fake_path = self.env.fake_install_path
self.install_path = None

if not fake_path:
if not fake_path or self.env.DEST_OS != 'darwin':
return

p = Utils.subst_vars(fake_path, self.env)
Expand Down

0 comments on commit b7d6d83

Please sign in to comment.