From f166c35281ad67d336acdd6bbada05c3e4b9ba57 Mon Sep 17 00:00:00 2001
From: Cristian C Lalescu <Cristian.Lalescu@ds.mpg.de>
Date: Fri, 19 May 2017 17:08:48 +0200
Subject: [PATCH] create obj/full_code when needed

---
 setup.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/setup.py b/setup.py
index 2ccc9c77..e39c81b1 100644
--- a/setup.py
+++ b/setup.py
@@ -187,6 +187,9 @@ class CompileLibCommand(distutils.cmd.Command):
         if not os.path.isdir('obj'):
             os.makedirs('obj')
             need_to_compile = True
+        if not os.path.isdir('obj/full_code'):
+            os.makedirs('obj/full_code')
+            need_to_compile = True
         if not os.path.isfile('bfps/libbfps.a'):
             need_to_compile = True
         else:
-- 
GitLab