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.
jasper/latest
Kian Kasad 5 years ago committed by GitHub
parent 6e0519df3a
commit 507cf284a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,6 @@ clean:
rm -f *.o *.gch dwmblocks rm -f *.o *.gch dwmblocks
install: output install: output
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks
chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks
uninstall: uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks

Loading…
Cancel
Save