From 3def65075c09af4961cd399e8e78ed78cca72e65 Mon Sep 17 00:00:00 2001 From: Wolfgang Bauer Date: Wed, 11 Oct 2017 22:16:02 +0200 Subject: [PATCH] Fix build with Qt 5.9 Summary: moc 5.9 errors out when building: Error: Plugin Metadata file "" could not be opened: file to open is a directory Same issue and fix as https://phabricator.kde.org/D5392 for khtml. CCBUG: 377490 Test Plan: builds fine now with Qt 5.9.0rc and also earlier versions. Reviewers: vriezen, pino Reviewed By: pino Subscribers: pino Differential Revision: https://phabricator.kde.org/D5985 --- src/kmplayer_part.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kmplayer_part.h b/src/kmplayer_part.h index f90f85d..0fddbaa 100644 --- a/src/kmplayer_part.h +++ b/src/kmplayer_part.h @@ -36,7 +36,7 @@ namespace KMPlayer { class KMPlayerFactory : public KPluginFactory { Q_OBJECT - Q_PLUGIN_METADATA(IID "org.kde.KPluginFactory" FILE "") + Q_PLUGIN_METADATA(IID "org.kde.KPluginFactory") Q_INTERFACES(KPluginFactory) public: KMPlayerFactory(); -- 2.14.2 d539a58ac8fff4bf7a12a7'>refslogtreecommitdiff
path: root/tests/transformations.scm
AgeCommit message (Expand)Author
2023-10-28tests: Adjust to cope with glibc graft....This is a followup to 1328c4cca531318e3ed90c6aecb522a5b22a4bcc, which led to failures for tests that were not prepared to cope with that. * tests/guix-environment-container.sh (hello_drv_nested): Pass “-E GUIX_BUILD_OPTIONS” so ‘--no-grafts’ is passed. * tests/guix-pack.sh (GUIX_BUILD_OPTIONS): Add ‘--no-grafts’. * tests/transformations.scm ("options->transformation, with-graft"): Skip when ‘glibc-final’ has a replacement. Change-Id: Ia65c9aeb06f524252815b8290a5ca7bf97ee8136 Ludovic Courtès