diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-12 13:19:30 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-12 13:19:30 +0200 |
commit | b9a3083db380671b3f034ca5c230804f4d4a84da (patch) | |
tree | fe856370240fb326ed24b0118dec5f61f7eca548 /gnu/packages/qt.scm | |
parent | b50eaa67642ebc25e9c896f2e700c08610e0a5da (diff) |
gnu: qtscxml: Fix build failure.
This fixes a faulty conflict resolution from the merge in commit
b50eaa67642ebc25e9c896f2e700c08610e0a5da.
* gnu/packages/qt.scm (qtscxml)[arguments]: Substitute arguments from QTSVG-5,
not QTSVG.
Diffstat (limited to 'gnu/packages/qt.scm')
-rw-r--r-- | gnu/packages/qt.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 2e0ade2376..f8d7d5e428 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1887,7 +1887,7 @@ and mobile applications targeting TV-like form factors."))) (substitute* "tests/auto/auto.pro" (("scion") "#")))))) (arguments - (substitute-keyword-arguments (package-arguments qtsvg) + (substitute-keyword-arguments (package-arguments qtsvg-5) ((#:tests? _ #f) #f))) ; TODO: Enable the tests (inputs (list qtbase-5 qtdeclarative-5)) |