blob: 4b93cd5f6bf1c9edad1754ecaa8fdf4fa44f2f7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ./SConstruct.orig 2014-01-21 02:29:19.000000000 -0200
+++ ./SConstruct 2014-01-21 02:29:28.000000000 -0200
@@ -26,7 +26,7 @@
if platform == 'linux-gcc':
CXX = 'g++' # not quite right, but env is not yet available.
import commands
- version = commands.getoutput('%s -dumpversion' %CXX)
+ version = 'FreeBSD'
platform = 'linux-gcc-%s' %version
print "Using platform '%s'" %platform
LD_LIBRARY_PATH = os.environ.get('LD_LIBRARY_PATH', '')
|