Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(install): Fix gzip invalid usage
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonybilinski committed Nov 30, 2017
1 parent af11665 commit 266f63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Installation.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ else()
set(SVG_SRC "${CMAKE_SOURCE_DIR}/img/icons/qtox.svg")
set(SVG_GZIP "${CMAKE_BINARY_DIR}/qtox.svgz")
install(CODE "
execute_process(COMMAND gzip -Sz INPUT_FILE ${SVG_SRC} OUTPUT_FILE ${SVG_GZIP})
execute_process(COMMAND gzip -S z INPUT_FILE ${SVG_SRC} OUTPUT_FILE ${SVG_GZIP})
" COMPONENT Runtime)
install(FILES "${SVG_GZIP}" DESTINATION "share/icons/hicolor/scalable/apps")
endif()

0 comments on commit 266f63f

Please sign in to comment.