diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-25 19:02:07 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-25 19:02:20 (GMT) |
commit | e06148804fbe7598d9b0bb556411be542494a11b (patch) | |
tree | 2febdda661e65d25b74f2b0cd1324e27a8b36b2b /Sluift | |
parent | 0d10e2553111a6c4786c9c2d1cebe405b1dfbbaa (diff) | |
download | swift-e06148804fbe7598d9b0bb556411be542494a11b.zip swift-e06148804fbe7598d9b0bb556411be542494a11b.tar.bz2 |
Fixed amd64 string.
Diffstat (limited to 'Sluift')
-rw-r--r-- | Sluift/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sluift/SConscript b/Sluift/SConscript index ae51f57..cf0f4d0 100644 --- a/Sluift/SConscript +++ b/Sluift/SConscript @@ -16,7 +16,7 @@ if env["SCONS_STAGE"] == "build" : # Temporarily not building plugin on amd64, because it # requires the whole build to be done with -fPIC - if myenv["PLATFORM"] != "posix" or platform.machine() != "amd64" : + if myenv["PLATFORM"] != "posix" or platform.machine() != "x86_64" : myenv.SharedLibrary("sluift", [ "sluift.cpp", ]) |