From be9adec70741013ee566d506e5c47608fc63b8bf Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Tue, 20 Jun 2017 09:21:03 +0200
Subject: [PATCH] Fix missing C on DEBUG_CFLAGS

---
 bob/buildout/envwrapper.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/buildout/envwrapper.py b/bob/buildout/envwrapper.py
index 346aa9a..a0ab0fd 100644
--- a/bob/buildout/envwrapper.py
+++ b/bob/buildout/envwrapper.py
@@ -28,7 +28,7 @@ class EnvironmentWrapper(object):
 
   # Note: CLang does not work well with BZ_DEBUG
   if platform.system() != 'Darwin':
-    DEBUG_FLAGS += " -DBZ_DEBUG"
+    DEBUG_CFLAGS += " -DBZ_DEBUG"
 
   def __init__(self, logger, debug=None, prefixes=None, environ=None):
 
-- 
GitLab