# HG changeset patch # User David Nadlinger # Date 1295128326 -3600 # Node ID aa08a72d480ae384e2259f5c3d139eadc8571005 # Parent 590dcfc85873c256d3c46b5779e8cd913d437460 Fixed construction of the ?--include-paths? generation argument in the build system. Interestingly enough, it doesn't seem to have caused any problems so far. diff -r 590dcfc85873 -r aa08a72d480a generator/CMakeLists.txt --- a/generator/CMakeLists.txt Mon Jan 03 08:30:59 2011 +0100 +++ b/generator/CMakeLists.txt Sat Jan 15 22:52:06 2011 +0100 @@ -233,7 +233,7 @@ set(d_inc_file_found 1) foreach(path ${QT_INCLUDES}) - set(inc_paths_tmp ${path}${sep}) + set(inc_paths_tmp ${path}${sep}${inc_paths_tmp}) endforeach() set(inc_paths ${inc_paths}${sep}${inc_paths_tmp})