2
0
Fork 0
mirror of https://github.com/kdabir/has.git synced 2024-11-11 14:40:48 +01:00

Update uninstall target in Makefile to respect env vars (#56)

`uninstall` now `rm`s from `${DESTDIR}${PREFIX}/bin` instead of
defaulting to `/usr/local/bin`
This commit is contained in:
Saager Mhatre 2021-10-02 08:25:25 -04:00 committed by GitHub
parent 868bc1aff6
commit 3ce21c9b2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ update-force :
rm -f has
uninstall :
rm -f /usr/local/bin/has
rm -f $(DESTDIR)$(PREFIX)/bin/has
.PHONY: test install uninstall update