[Clam-devel] Re: Patch for build system
Trevor Fancher
trevor at fancher.org
Fri Feb 15 23:35:52 PST 2008
On Feb 16, 2008, at 1:10 AM, Trevor Fancher wrote:
> Hi,
>
> I'm new to this list and also to CLAM and its build system so bear
> with me.
>
> ...
>
I found another build system bug. This one in Annotator's build system.
Patch attached.
Trevor Fancher
-------------- next part --------------
A non-text attachment was scrubbed...
Name: annotator-build-system.patch
Type: application/octet-stream
Size: 528 bytes
Desc: not available
URL: <http://lists.clam-project.org/pipermail/clam-devel-clam-project.org/attachments/20080216/05d41984/attachment-0005.obj>
-------------- next part --------------
Index: Annotator/vmqt/SConstruct
===================================================================
--- Annotator/vmqt/SConstruct (revision 11188)
+++ Annotator/vmqt/SConstruct (working copy)
@@ -27,7 +27,7 @@
env.SConsignFile() # Single signature file
-crosscompiling = env["crossmingw"]
+crosscompiling = env.has_key("crossmingw") and env["crossmingw"]
isWindowsPlatform = sys.platform=='win32' or crosscompiling
isLinuxPlatform = sys.platform=='linux' and not crosscompiling
isDarwinPlatform = sys.platform=='darwin'
More information about the clam-devel
mailing list