diff options
| -rw-r--r-- | cscript | 4 | ||||
| -rw-r--r-- | platform/osx/make_dmg.sh | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -14,9 +14,9 @@ def build(env, target): cmd = './waf configure --prefix=%s' % env.work_dir_cscript() if target.platform == 'windows': cmd += ' --target-windows' - else if target.platform == 'osx': + elif target.platform == 'osx': cmd += ' --osx' - else if target.platform == 'linux': + elif target.platform == 'linux': cmd += ' --static' env.command(cmd) diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh index c52d1e9eb..f757eda34 100644 --- a/platform/osx/make_dmg.sh +++ b/platform/osx/make_dmg.sh @@ -70,7 +70,7 @@ for obj in $WORK/$macos/dvdomatic $WORK/$libs/*.dylib; do fi done - +pwd cp build/platform/osx/Info.plist $WORK/$approot cp icons/dvdomatic.icns $WORK/$resources/DVD-o-matic.icns |
