From 3386a3af80225f873650e2faf54295bda026bb07 Mon Sep 17 00:00:00 2001
From: Kyle Sanderson <kyle.leet@gmail.com>
Date: Sat, 21 Feb 2015 20:25:39 -0800
Subject: [PATCH] Add Wno-error=sign-compare for gcc to Compiler.

---
 sourcepawn/compiler/AMBuilder | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sourcepawn/compiler/AMBuilder b/sourcepawn/compiler/AMBuilder
index b716d6bd..ad687627 100644
--- a/sourcepawn/compiler/AMBuilder
+++ b/sourcepawn/compiler/AMBuilder
@@ -53,6 +53,7 @@ compiler.sourcedeps += packed_includes
  
 if compiler.cc.behavior == 'gcc':
   compiler.cflags += ['-Wno-format']
+  compiler.cflags += ['-Wno-error=sign-compare']
   compiler.c_only_flags += ['-std=c99']
   if builder.target_platform == 'linux':
     compiler.postlink += ['-lm']