diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-30 05:25:21 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-30 05:25:21 (GMT) |
commit | 83647da87e10843ba398451dc5cf89d3fe2db0df (patch) | |
tree | 209e49350ba82b20f9cfc01e276edf22abb439f3 /src/openscad.cc | |
parent | 3ff0eeefaa601080b2821e7b07c94fbae5ec05b7 (diff) |
linux build fixes
git-svn-id: http://svn.clifford.at/openscad/trunk@369 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 05b673b..8c0db68 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -64,7 +64,7 @@ void handle_dep(QString filename) if (!QFile(filename).exists() && make_command) { char buffer[4096]; snprintf(buffer, 4096, "%s '%s'", make_command, filename.replace("'", "'\\''").toUtf8().data()); - system(buffer); + system(buffer); // FIXME: Handle error } } |