[Pkg-owncloud-commits] [owncloud-client] 295/332: CMake: Fix installation of the icons, path corrected.

Sandro Knauß hefee-guest at moszumanska.debian.org
Thu Aug 14 21:07:14 UTC 2014


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit f4e2041b0b707b5f2f2799a31be643ba57cf94c9
Author: Klaas Freitag <freitag at owncloud.com>
Date:   Tue Aug 5 11:46:21 2014 +0200

    CMake: Fix installation of the icons, path corrected.
---
 shell_integration/icons/CMakeLists.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/shell_integration/icons/CMakeLists.txt b/shell_integration/icons/CMakeLists.txt
index a2531a5..d4a3b25 100644
--- a/shell_integration/icons/CMakeLists.txt
+++ b/shell_integration/icons/CMakeLists.txt
@@ -12,7 +12,8 @@ if( UNIX AND NOT APPLE )
     SET(ICON_DIR ${DATADIR}/icons/hicolor)
     
     FOREACH(size 128x128 16x16 256x256 32x32 48x48 64x64 72x72)
-	install(DIRECTORY ${size} DESTINATION ${ICON_DIR}/${size}/apps FILES_MATCHING PATTERN "*.png")
+	file(GLOB files  "${size}/*.png")
+        install(FILES ${files} DESTINATION ${ICON_DIR}/${size}/apps)
     ENDFOREACH(size)
 
 endif()

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list