Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From 9250fed086a4a8a645a972764a9bf34e4566ec2e Mon Sep 17 00:00:00 2001 |
| 2 | From: Fathi Boudra <fabo@debian.org> |
| 3 | Date: Wed, 26 Sep 2012 20:46:14 +0200 |
| 4 | Subject: [PATCH 15/21] configure: add nostrip for debug packages |
| 5 | |
| 6 | Qt is built in release mode and strip files by default. |
| 7 | Set CONFIG+=nostrip to avoid the stripping and |
| 8 | let dh_strip do it to generate debug packages. |
| 9 | |
| 10 | Upstream-Status: Inappropriate [Configuration] |
| 11 | |
| 12 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> |
| 13 | --- |
| 14 | configure | 2 ++ |
| 15 | 1 file changed, 2 insertions(+) |
| 16 | |
| 17 | diff --git a/configure b/configure |
| 18 | index 7983c3d..d02824b 100755 |
| 19 | --- a/configure |
| 20 | +++ b/configure |
| 21 | @@ -710,6 +710,8 @@ mkdir -p "$outpath/config.tests" |
| 22 | rm -f "$outpath/config.tests/.qmake.cache" |
| 23 | cp "$QMAKE_VARS_FILE" "$outpath/config.tests/.qmake.cache" |
| 24 | |
| 25 | +QMakeVar add CONFIG nostrip |
| 26 | + |
| 27 | QMakeVar add styles "cde mac motif plastique cleanlooks windows" |
| 28 | QMakeVar add decorations "default windows styled" |
| 29 | QMakeVar add mouse-drivers "pc" |
| 30 | -- |
| 31 | 1.8.0 |
| 32 | |