summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRohan Garg <rohan@kde.org>2014-08-20 19:35:46 +0200
committerRohan Garg <rohan@kde.org>2014-08-21 14:29:59 +0200
commitb644545d3db5f87d0a590667cd834dea07a73ccf (patch)
tree1fede93e3c4d13bcd106e6c6b99176a2814c4df7
parent70ef4a82a846afdda6f6d2b956536986c79ee9c3 (diff)
downloadpkg-kde-tools-b644545d3db5f87d0a590667cd834dea07a73ccf.tar.gz
Add proper marker while passing ECM_MKSPECS_INSTALL_DIR
-rw-r--r--perllib/Debian/Debhelper/Buildsystem/kf5.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/Debian/Debhelper/Buildsystem/kf5.pm b/perllib/Debian/Debhelper/Buildsystem/kf5.pm
index c472b28..d7bbe68 100644
--- a/perllib/Debian/Debhelper/Buildsystem/kf5.pm
+++ b/perllib/Debian/Debhelper/Buildsystem/kf5.pm
@@ -44,7 +44,7 @@ sub get_kf5_flags {
# Unescape flags using shell
$flags = `$^X -w -Mstrict -e 'print join("\\x1e", \@ARGV);' -- $escaped_flags`;
- $flags = $flags . " -DECM_MKSPECS_INSTALL_DIR=usr/lib/" . dpkg_architecture_value('DEB_HOST_MULTIARCH') . "/qt5/mkspecs/modules/";
+ $flags = $flags . "\x1e-DECM_MKSPECS_INSTALL_DIR=/usr/lib/" . dpkg_architecture_value('DEB_HOST_MULTIARCH') . "/qt5/mkspecs/modules/";
return split("\x1e", $flags);
}