Pārlūkot izejas kodu

Fixed compile error that suddenly appeared with no apparent reason

rdb 16 gadi atpakaļ
vecāks
revīzija
b0e5827d43
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      makepanda/makepanda.py

+ 1 - 1
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'