From 9b28cbe3c7bfe63777a6b42d6e98923a40c8233c Mon Sep 17 00:00:00 2001 From: Chris PeBenito Date: Fri, 26 Jun 2015 14:14:01 -0400 Subject: [PATCH] setup.py: fix apol icons installation. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b05ee2d..391dd4f 100644 --- a/setup.py +++ b/setup.py @@ -142,7 +142,8 @@ setup(name='setools', 'build_ext': BuildExtCommand}, packages=['setools', 'setools.policyrep', 'setoolsgui', 'setoolsgui.apol'], scripts=['apol', 'seinfo', 'seinfoflow', 'sesearch', 'sedta'], - data_files=[(join(sys.prefix, 'share/setools'), glob.glob("data/*"))], + data_files=[(join(sys.prefix, 'share/setools'), glob.glob("data/*.ui") + ["data/perm_map"] ), + (join(sys.prefix, 'share/setools/icons'), glob.glob("data/icons/*.png"))], ext_modules=ext_py_mods, test_suite='tests', license='GPLv2+, LGPLv2.1+',