Make it compile under linux.
This commit is contained in:
parent
7842596748
commit
33c51789c5
|
@ -190,7 +190,7 @@ class InternalCommands:
|
||||||
|
|
||||||
print 'Building with GNU Make...'
|
print 'Building with GNU Make...'
|
||||||
self.try_chdir(self.bin_dir)
|
self.try_chdir(self.bin_dir)
|
||||||
err = os.system(make_cmd)
|
err = os.system(self.make_cmd)
|
||||||
self.restore_chdir()
|
self.restore_chdir()
|
||||||
|
|
||||||
if err == 0:
|
if err == 0:
|
||||||
|
@ -234,7 +234,7 @@ class InternalCommands:
|
||||||
|
|
||||||
print 'Cleaning with GNU Make...'
|
print 'Cleaning with GNU Make...'
|
||||||
self.try_chdir(self.bin_dir)
|
self.try_chdir(self.bin_dir)
|
||||||
err = os.system(make_cmd + ' clean')
|
err = os.system(self.make_cmd + ' clean')
|
||||||
self.restore_chdir()
|
self.restore_chdir()
|
||||||
|
|
||||||
if err == 0:
|
if err == 0:
|
||||||
|
|
|
@ -19,7 +19,9 @@
|
||||||
#include "CArch.h"
|
#include "CArch.h"
|
||||||
#include "XBase.h"
|
#include "XBase.h"
|
||||||
#include "XArch.h"
|
#include "XArch.h"
|
||||||
|
#if SYSAPI_WIN32
|
||||||
#include "CArchMiscWindows.h"
|
#include "CArchMiscWindows.h"
|
||||||
|
#endif
|
||||||
#include "LogOutputters.h"
|
#include "LogOutputters.h"
|
||||||
#include "XSynergy.h"
|
#include "XSynergy.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue