From f8576df31f21594b3752883970d6b9a414507a0e Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 21 Oct 2009 17:34:22 +0000 Subject: [PATCH] Bug fix for windows runtime build --- makepanda/makepanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index da498c8a2e..6d84848806 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -760,7 +760,7 @@ def CompileLink(dll, obj, opts): pass else: cmd += ' ' + BracketNameWithQuotes(x) if (GetOrigExt(dll)==".exe"): - cmd += " built/tmp/pandaIcon.res" + cmd += " " + GetOutputDir() + "/tmp/pandaIcon.res" for (opt, name) in LIBNAMES: if (opt=="ALWAYS") or (opts.count(opt)): cmd += " " + BracketNameWithQuotes(name) oscmd(cmd)