meson.build: de-duplicate the icondir defines
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
4cf5501044
commit
f08100bae2
|
@ -1,8 +1,5 @@
|
|||
gnome = import('gnome')
|
||||
|
||||
desktopdir = join_paths(datadir, 'applications')
|
||||
icondir_scalable = join_paths(datadir, 'icons', 'hicolor', 'scalable', 'apps')
|
||||
icondir_symbolic = join_paths(datadir, 'icons', 'hicolor', 'symbolic', 'apps')
|
||||
metainfodir = join_paths(datadir, 'metainfo')
|
||||
|
||||
conf = configuration_data()
|
||||
|
|
|
@ -16,7 +16,9 @@ pkgdatadir = join_paths(datadir, meson.project_name())
|
|||
bindir = join_paths(prefix, get_option('bindir'))
|
||||
podir = join_paths(meson.source_root(), 'po')
|
||||
desktopdir = join_paths(datadir, 'applications')
|
||||
icondir = join_paths(datadir, 'icons', 'hicolor', 'scalable', 'apps')
|
||||
icondir = join_paths(datadir, 'icons', 'hicolor')
|
||||
icondir_scalable = join_paths(icondir, 'scalable', 'apps')
|
||||
icondir_symbolic = join_paths(icondir, 'symbolic', 'apps')
|
||||
metainfodir = join_paths(datadir, 'metainfo')
|
||||
libexecdir = join_paths(get_option('prefix'), get_option('libexecdir'), 'tuhi')
|
||||
|
||||
|
|
Loading…
Reference in New Issue