From: Kian Kasad Date: Mon, 4 May 2020 08:20:45 +0000 (-0700) Subject: Change `cp`/`chmod` to `install` X-Git-Url: https://git.armaanb.net/?p=dwmblocks.git;a=commitdiff_plain;h=507cf284a27d0664b4f981a43ed419a93680e2d2 Change `cp`/`chmod` to `install` The install command was meant for exactly this purpose; installing a file to a location and setting its permissions. This combines the `cp` and `chmod` commands into one `install` command. --- diff --git a/Makefile b/Makefile index c45a563..5f2bb98 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,6 @@ clean: rm -f *.o *.gch dwmblocks install: output mkdir -p $(DESTDIR)$(PREFIX)/bin - cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin - chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks + install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks