summaryrefslogtreecommitdiffstats
path: root/windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch
diff options
context:
space:
mode:
Diffstat (limited to 'windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch')
-rw-r--r--windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch b/windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch
deleted file mode 100644
index bfa7ab002c..0000000000
--- a/windowmanagers/awesome/awesome-3.4.8-cmake-2.8.4.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-fix compilation with cmake 2.8.4
-
-https://awesome.naquadah.org/bugs/index.php?do=details&task_id=869
-https://bugs.gentoo.org/show_bug.cgi?id=356009
---- awesome-3.4.9/CMakeLists.txt.orig
-+++ awesome-3.4.9/CMakeLists.txt
-@@ -274,14 +274,15 @@ endif()
-
- # {{{ Theme icons
- file(GLOB icon_sources RELATIVE ${SOURCE_DIR} ${SOURCE_DIR}/themes/*/titlebar/*.png)
--set(ALL_ICONS ${icon_sources})
-
- foreach(icon ${icon_sources})
- # Copy all icons to the build dir to simplify the following code.
- # Source paths are interpreted relative to ${SOURCE_DIR}, target paths
- # relative to ${BUILD_DIR}.
- get_filename_component(icon_path ${icon} PATH)
-+ get_filename_component(icon_name ${icon} NAME)
- file(COPY ${icon} DESTINATION ${icon_path})
-+ set(ALL_ICONS ${ALL_ICONS} "${icon_path}/${icon_name}")
- endforeach()
-
- macro(a_icon_convert match replacement input)