diff options
| author | David Kalnischkies <david@kalnischkies.de> | 2015-12-15 17:18:50 +0100 |
|---|---|---|
| committer | David Kalnischkies <david@kalnischkies.de> | 2015-12-19 23:04:34 +0100 |
| commit | 85a67355c0340596630a47f85507d61c68dcbd0e (patch) | |
| tree | 872556e3a613a05c86116fd62dfa100a4ca52fbd /buildlib/python.mak | |
| parent | 39e77e45ae627165a8f89d83a8f875251920ce05 (diff) | |
buildsystem: deal with spaces in path to source
Git-Dch: Ignore
Diffstat (limited to 'buildlib/python.mak')
| -rw-r--r-- | buildlib/python.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildlib/python.mak b/buildlib/python.mak index 18918bb33..25349daa0 100644 --- a/buildlib/python.mak +++ b/buildlib/python.mak @@ -58,7 +58,7 @@ endif # ifdef PYTHONLIB vpath %.cc $(SUBDIRS) $(OBJ)/%.opic: %.cc echo Compiling $< to $@ - $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXSTD) $(CXXFLAGS) $(PICFLAGS) -o $@ $(abspath $<) + $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXSTD) $(CXXFLAGS) $(PICFLAGS) -o $@ '$(abspath $<)' $(DoDep) # Include the dependencies that are available |
