diff options
| author | Mr Chainman <mr.chainman@0box.eu> | 2020-01-02 16:31:24 +0100 | 
|---|---|---|
| committer | Mr Chainman <mr.chainman@0box.eu> | 2020-01-02 16:31:24 +0100 | 
| commit | 91c492319b9554fef0ce192552e9ce489d592ec2 (patch) | |
| tree | ee516c0c43e94bd7fe4257462a98abcb9a9bb484 | |
| parent | dox and stuff rmd (diff) | |
| download | dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.gz dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.bz2 dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.xz dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.zst dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.zip | |
Added chmod in Makefile to prevent execution errors
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -1,9 +1,10 @@  output: dwmblocks.o  	gcc dwmblocks.o -lX11 -o dwmblocks  dwmblocks.o: dwmblocks.c blocks.h -	gcc -c -lX11 dwmblocks.c  +	gcc -c -lX11 dwmblocks.c  clean:  	rm *.o *.gch dwmblocks  install: output  	mkdir -p /usr/local/bin  	cp -f dwmblocks /usr/local/bin +	chmod 755 /usr/local/bin/dwmblocks | 
