blob: 5a619f80792a67bfe9c73eef568248bd6aca7dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Description: set CONFIG += nostrip to avoid stripping and
let dh_strip do it to generate debug packages.
Author: Fathi Boudra <fabo@debian.org>
---
Source/WebKit.pri | 2 ++
1 file changed, 2 insertions(+)
--- a/Source/WebKit.pri
+++ b/Source/WebKit.pri
@@ -36,6 +36,8 @@ CONFIG(standalone_package): DEFINES *= N
CONFIG += depend_includepath
DEPENDPATH += $$OUT_PWD
+CONFIG += nostrip
+
DEFINES += BUILDING_QT__=1
building-libs {
win32-msvc*|win32-icc: INCLUDEPATH += $$PWD/JavaScriptCore/os-win32
|