gnu: Don't use the store path in the .desktop file.

This fixes bug#30228.

* gnu/packages/sync.scm (owncloud-client)[arguments]: Add a custom phase
to substitute the executable name for the full path to the binary.
Remove the 'patch-dot-desktop-files phase.
master
Efraim Flashner 2019-02-20 09:05:30 +02:00
parent c6d8817ec4
commit 2b371f4dd5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 1 deletions

View File

@ -79,7 +79,13 @@
(substitute* "test/CMakeLists.txt"
(("owncloud_add_test\\(Utility \"\"\\)" test)
(string-append "#" test)))
#t)))
#t))
(add-after 'unpack 'dont-embed-store-path
(lambda _
(substitute* "src/common/utility_unix.cpp"
(("QCoreApplication::applicationFilePath\\()") "\"owncloud\""))
#t))
(delete 'patch-dot-desktop-files))
#:configure-flags '("-DUNIT_TESTING=ON"
;; build without qtwebkit, which causes the
;; package to FTBFS while looking for QWebView.