[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56771] [PATCH 01/33] gnu: qtbase: Patch /bin/pwd in executable scri
From: |
Maxim Cournoyer |
Subject: |
[bug#56771] [PATCH 01/33] gnu: qtbase: Patch /bin/pwd in executable scripts. |
Date: |
Mon, 25 Jul 2022 19:07:31 -0400 |
* gnu/packages/qt.scm (qtbase)[phases]{patch-paths}: Patch /bin/pwd.
[inputs]: Add coreutils-minimal.
---
gnu/packages/qt.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index ae68317492..fd26264892 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -622,6 +622,9 @@ (define-public qtbase
(delete 'patch-xdg-open)
(add-after 'patch-paths 'patch-more-paths
(lambda* (#:key inputs #:allow-other-keys)
+ (substitute* (find-files "bin" "\\.in$")
+ (("/bin/pwd")
+ (search-input-file inputs "bin/pwd")))
(substitute* "src/gui/platform/unix/qgenericunixservices.cpp"
(("\"xdg-open\"")
(format #f "~s" (search-input-file inputs "bin/xdg-open"))))
@@ -687,7 +690,7 @@ (define-public qtbase
ninja wayland-protocols)))
(inputs
(modify-inputs (package-inputs qtbase-5)
- (prepend bash-minimal libxcb md4c)
+ (prepend bash-minimal coreutils-minimal libxcb md4c)
(replace "gtk+" gtk) ;use latest gtk
(replace "postgresql" postgresql))) ;use latest postgresql
(native-search-paths
--
2.36.1
- [bug#56771] [PATCH 00/33] *** Update Jami to 20220725, core Qt packages along the way, Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 01/33] gnu: qtbase: Patch /bin/pwd in executable scripts.,
Maxim Cournoyer <=
- [bug#56771] [PATCH 02/33] gnu: qtbase: Honor CMAKE_PREFIX_PATH., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 03/33] gnu: qtbase: Enable test suite., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 07/33] gnu: qpwgraph: Migrate to Qt 6 and add libxkbcommon input., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 05/33] gnu: qtsvg-5: Fix indentation., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 17/33] gnu: Add qtwebsockets, version 6.3.1., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 14/33] gnu: qtquickcontrols2: Rename to qtquickcontrols2-5., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 26/33] gnu: Add qtnetworkauth, version 6.3.1., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 06/33] gnu: Add qtsvg, version 6.3.1., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 09/33] gnu: qtmultimedia: Rename to qtmultimedia-5., Maxim Cournoyer, 2022/07/25
- [bug#56771] [PATCH 13/33] gnu: qtquickcontrols: Rename to qtquickcontrols-5., Maxim Cournoyer, 2022/07/25