Fixed relative paths for copying Catch header

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-06-08 21:22:54 +02:00
parent 9d80e4aa37
commit 8b43f59eae

View File

@@ -104,7 +104,7 @@ if __name__=='__main__':
path = os.path.dirname(path)
import shutil
shutil.copy2(os.path.join('..','externals','Catch','single_include','catch.hpp'),os.path.join('..','include','catch.hpp'))
shutil.copy2(os.path.join(path, 'externals','Catch','single_include','catch.hpp'),os.path.join(path,'include','catch.hpp'))
version_to_file(root_dir = path)
gitrev_to_file(root_dir = path)