You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
630 B
12 lines
630 B
--- qmake/generators/unix/unixmake.cpp
|
|
+++ qmake/generators/unix/unixmake.cpp
|
|
@@ -836,7 +836,7 @@
|
|
ret += "\n\t";
|
|
ret += QString(resource ? "-$(INSTALL_DIR)" : "-$(INSTALL_FILE)") + " \"" +
|
|
src_targ + "\" \"" + dst_targ + "\"";
|
|
- if(!project->isActiveConfig("debug") && !project->isEmpty("QMAKE_STRIP") &&
|
|
+ if(false && !project->isActiveConfig("debug") && !project->isEmpty("QMAKE_STRIP") &&
|
|
(project->first("TEMPLATE") != "lib" || !project->isActiveConfig("staticlib"))) {
|
|
ret += "\n\t-" + var("QMAKE_STRIP");
|
|
if(project->first("TEMPLATE") == "lib" && !project->isEmpty("QMAKE_STRIPFLAGS_LIB"))
|