From b979c7e85b32f76193cf8a6c1adb17021d8eda1a Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Mon, 13 Sep 2010 22:02:37 +0300 Subject: [PATCH] waf: fix creation of non-delatable directories the */apps directories where created during install stage this was problematic because they were created with root permissions and were not deletable without root permissions --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 77e11190..d138d008 100644 --- a/wscript +++ b/wscript @@ -453,7 +453,8 @@ def build(bld): # Icons icon_sizes = ['16x16', '22x22', '24x24', '32x32', '48x48', '256x256'] for icon_size in icon_sizes: - bld.install_files('${PREFIX}/share/icons/hicolor/' + icon_size + '/apps/', 'art/' + icon_size + '/apps/gladish.png') + bld.path.ant_glob('art/' + icon_size + '/apps/*.png') + bld.install_files('${PREFIX}/share/icons/hicolor/' + icon_size + '/apps/', 'art/' + icon_size + '/apps/gladish.png') status_images = [] for status in ["down", "unloaded", "started", "stopped", "warning", "error"]: