build: fix install permissions

otherwise the image is installed as root read only.
This commit is contained in:
Marcel Hollerbach 2018-01-27 17:31:53 +01:00
parent 4f87249016
commit 8623d4b285
1 changed files with 3 additions and 1 deletions

View File

@ -1,2 +1,4 @@
install_data('terminology.png',
install_dir: join_paths(get_option('datadir'), 'icons'))
install_dir: join_paths(get_option('datadir'), 'icons'),
install_mode : 'rw-r--r--'
)