Maemo: Don't strip binaries by default.

Otherwise, we couldn't sensibly use the device's gdb for debugging.
This commit is contained in:
Christian Kandeler
2010-08-19 17:37:49 +02:00
parent f5193c790b
commit 4d691377f3

View File

@@ -208,6 +208,7 @@ bool MaemoTemplatesManager::createDebianTemplatesIfNecessary(const ProjectExplor
QByteArray rulesContents = rulesFile.readAll(); QByteArray rulesContents = rulesFile.readAll();
rulesContents.replace("DESTDIR", "INSTALL_ROOT"); rulesContents.replace("DESTDIR", "INSTALL_ROOT");
rulesContents.replace("dh_shlibdeps", "# dh_shlibdeps"); rulesContents.replace("dh_shlibdeps", "# dh_shlibdeps");
rulesContents.replace("dh_strip", "# dh_strip");
// Would be the right solution, but does not work (on Windows), // Would be the right solution, but does not work (on Windows),
// because dpkg-genchanges doesn't know about it (and can't be told). // because dpkg-genchanges doesn't know about it (and can't be told).