diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2018-02-28 20:49:16 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2018-02-28 20:49:16 +0100 | 
| commit | 37c7e847212e8954f8e9047c42345af29edee6e9 (patch) | |
| tree | 0ed155813fe9a6934ade89b2cf9ae738d1ebc6c6 | |
| parent | d03fc61a268048e1bcef04fb00883c6cd339027b (diff) | |
Makefile: Set permissions of font and image directories
Closes #367
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -65,12 +65,14 @@ install-bin:  install-font:  	@echo installing fonts to ${font_dir}  	@mkdir -p ${font_dir} +	@chmod 755 ${font_dir}  	@cp share/fonts/* ${font_dir}  	@chmod 644 ${font_dir}/*  install-img:  	@echo installing images to ${image_dir}  	@mkdir -p ${image_dir} +	@chmod 755 ${image_dir}  	@cp share/images/* ${image_dir}  	@chmod 644 ${image_dir}/* | 
