1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix desktop file install path.
Author: Arun Kumar Pariyar <openarungeek@gmail.com>
Forwarded: https://github.com/dekzi/dde-store/pull/27
Last-Update: 2022-09-24
---
--- dde-store-1.2.3.orig/backend/sources/snap/CMakeLists.txt
+++ dde-store-1.2.3/backend/sources/snap/CMakeLists.txt
@@ -5,4 +5,4 @@ execute_process(COMMAND ${QT_QMAKE_EXECU
OUTPUT_VARIABLE QT_INSTALL_PLUGINS OUTPUT_STRIP_TRAILING_WHITESPACE
)
install(TARGETS snapplugin DESTINATION ${QT_INSTALL_PLUGINS}/dde-store)
-install(FILES dde-store-snapplugin.desktop DESTINATION usr/share/applications)
\ No newline at end of file
+install(FILES dde-store-snapplugin.desktop DESTINATION /usr/share/applications)
\ No newline at end of file
|