Changeset 1044
- Timestamp:
- Sep 1, 2011, 6:48:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/makefile.cpp
r998 r1044 53 53 #include <qsettings.h> 54 54 #include <qdatetime.h> 55 55 56 #if defined(Q_OS_UNIX) 56 57 #include <unistd.h> … … 2871 2872 return cacheVal; 2872 2873 2874 2875 2876 2873 2877 //do the fixin' 2874 2878 QString pwd = qmake_getpwd(); … … 2912 2916 if(ret == match_dir) { 2913 2917 ret = ""; 2914 } else if(ret.startsWith(match_dir + Option::dir_sep )) {2918 } else if(ret.startsWith(match_dir + Option::dir_sep)) { 2915 2919 ret = ret.mid(match_dir.length() + Option::dir_sep.length()); 2916 2920 } else { … … 2933 2937 if(match_dir.isEmpty()) 2934 2938 break; 2935 if(ret.startsWith(match_dir + Option::dir_sep )) {2939 if(ret.startsWith(match_dir + Option::dir_sep)) { 2936 2940 //concat 2937 2941 int remlen = ret.length() - (match_dir.length() + 1);
Note:
See TracChangeset
for help on using the changeset viewer.