[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70256] [PATCH v2] gnu: signon-plugin-oauth2: Fix installing in a do
From: |
Sughosha |
Subject: |
[bug#70256] [PATCH v2] gnu: signon-plugin-oauth2: Fix installing in a doubled prefix. |
Date: |
Sun, 7 Apr 2024 17:30:15 +0530 |
This commit fixes creating one more /gnu/store/ directory inside its
own prefix, creating again the same prefix inside it and then
installing in it.
* gnu/packages/qt.scm (signon-plugin-oauth2)[arguments]:
<#:make-flags>: Remove argument.
<#:phases>: In configure phase, add SIGNON_PLUGINS_DIR variable.
Change-Id: Id67cdca7d9edc543a9bcfee4a8ae860acd87d125
---
gnu/packages/qt.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 1440c6981c..19185c3f6a 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5327,7 +5327,6 @@ (define-public signon-plugin-oauth2
(inputs (list signond))
(arguments
(list #:tests? #f ;no tests
- #:make-flags #~(list (string-append "INSTALL_ROOT=" #$output))
#:phases
#~(modify-phases %standard-phases
(replace 'configure
@@ -5337,7 +5336,9 @@ (define-public signon-plugin-oauth2
""))
(invoke "qmake"
(string-append "PREFIX=" #$output)
- (string-append "LIBDIR=" #$output "/lib")))))))
+ (string-append "LIBDIR=" #$output "/lib")
+ (string-append "SIGNON_PLUGINS_DIR=" #$output
+ "/lib")))))))
(synopsis "OAuth 2 plugin for signon")
(description
"This plugin for the Accounts-SSO SignOn daemon handles the OAuth
base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b
--
2.41.0