From b0e5827d435350ace7e24d6307604ed3726ea2ec Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 24 Jul 2009 09:24:56 +0000 Subject: [PATCH] Fixed compile error that suddenly appeared with no apparent reason --- makepanda/makepanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 1169110243..3020e87128 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -801,7 +801,7 @@ def CompileLink(dll, obj, opts): else: mtcmd = mtcmd + ';1' oscmd(mtcmd) if (COMPILER=="LINUX"): - if (GetOrigExt(dll)==".exe"): cmd = 'g++ -o ' + dll + ' -L' + GetOutputDir() + '/lib -L/usr/X11R6/lib' + if (GetOrigExt(dll)==".exe"): cmd = 'g++ -o ' + dll + ' -L' + GetOutputDir() + '/lib -L' + GetOutputDir() + '/tmp -L/usr/X11R6/lib' else: if (sys.platform == "darwin"): cmd = 'g++ -undefined dynamic_lookup'