diff options
author | Rohan Garg <rohan@kde.org> | 2014-08-07 19:48:03 +0200 |
---|---|---|
committer | Rohan Garg <rohan@kde.org> | 2014-08-07 19:48:03 +0200 |
commit | 5655c0031ec3773d586425818675ecfd3446bd64 (patch) | |
tree | 966444a8c367b49fcee544e3f2630f5fa1944353 | |
parent | b1e8d50b4fc7baef2d76dfe786ccde2ddb30b392 (diff) | |
download | pkg-kde-tools-5655c0031ec3773d586425818675ecfd3446bd64.tar.gz |
More misc. fixes for the KF5 sequence
-rw-r--r-- | perllib/Debian/Debhelper/Sequence/kf5.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/perllib/Debian/Debhelper/Sequence/kf5.pm b/perllib/Debian/Debhelper/Sequence/kf5.pm index 9beeaff..60c33e7 100644 --- a/perllib/Debian/Debhelper/Sequence/kf5.pm +++ b/perllib/Debian/Debhelper/Sequence/kf5.pm @@ -19,20 +19,20 @@ return 0; } unless (ensure_debhelper_version(7, 3, 16)) { - error "debhelper addon 'kde' requires debhelper 7.3.16 or later"; + error "debhelper addon 'kf5' requires debhelper 7.3.16 or later"; } 1; } -# Build with kde buildsystem by default -add_command_options("dh_auto_configure", "--buildsystem=kde"); -add_command_options("dh_auto_build", "--buildsystem=kde"); -add_command_options("dh_auto_test", "--buildsystem=kde"); -add_command_options("dh_auto_install", "--buildsystem=kde"); -add_command_options("dh_auto_clean", "--buildsystem=kde"); +# Build with kf5 buildsystem by default +add_command_options("dh_auto_configure", "--buildsystem=kf5"); +add_command_options("dh_auto_build", "--buildsystem=kf5"); +add_command_options("dh_auto_test", "--buildsystem=kf5"); +add_command_options("dh_auto_install", "--buildsystem=kf5"); +add_command_options("dh_auto_clean", "--buildsystem=kf5"); -# Exclude kde documentation from dh_compress by default +# Exclude kf5 documentation from dh_compress by default add_command_options("dh_compress", qw(-X.dcl -X.docbook -X-license -X.tag -X.sty -X.el)); |