1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

Fix fdo icon install path

This commit is contained in:
Martin Herkt 2018-01-22 10:03:45 +01:00 committed by odrling
parent 7c44ae5303
commit 3cc6187174

View File

@ -15,5 +15,5 @@ foreach s : ['16x16.png', '22x22.png', '24x24.png', '32x32.png',
dir = s.split('.')[0]
ext = s.split('.')[1]
install_data(join_paths('desktop', dir, 'aegisub.' + ext),
install_dir : join_paths(get_option('datadir'), 'icons', 'hicolor', dir))
install_dir : join_paths(get_option('datadir'), 'icons', 'hicolor', dir, 'apps'))
endforeach