From d0397f8481a8b5beb440384d93294451d3521b28 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 9 Jul 2012 21:08:19 -0400 Subject: [PATCH] Bug #1012 - Fixed bug #1012, which failed to install add-on scripts with execute permission. --- ChangeLog | 2 ++ scripts/CMakeLists.txt | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3f354fbbf..b25f4125f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -95,6 +95,8 @@ Bugs + Fixed bug #1008, which failed to remove tasks with the special tag '+nocal' from the calendar report output with 'calendar.details=full' set (thanks to Bryan Kam). + + Fixed bug #1012, which failed to install add-on scripts with execute + permission. + Fixed bug #1016, which caused segfaults when importing JSON with annotations that lack description or entry date (thanks to Nicholas Rabenau). + Fixed bug #1017, which exported invalid JSON when there were no tasks (thanks diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index fd1a4a94c..ba87ef027 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -1,3 +1,9 @@ cmake_minimum_required (VERSION 2.8) -install (DIRECTORY bash fish vim zsh add-ons extensions +install (DIRECTORY bash fish vim zsh extensions DESTINATION ${TASK_DOCDIR}/scripts) +install (DIRECTORY add-ons + DESTINATION ${TASK_DOCDIR}/scripts + FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE + GROUP_READ GROUP_EXECUTE + WORLD_READ WORLD_EXECUTE) +