From 8a257582e3366b37ab7651198fc4c8912c520b37 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Sun, 7 Apr 2024 17:07:30 +0530 Subject: gnu: signon-plugin-oauth2: Fix installing in a doubled prefix. 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: I10e973980228354c9943741dd480544bffca65b8 Signed-off-by: Christopher Baines --- gnu/packages/qt.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 13af841455..198325c03a 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -5360,7 +5360,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 @@ -5370,7 +5369,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 -- cgit v1.2.3