Skip to content

Commit

Permalink
Update uninstall target in Makefile to respect env vars (#56)
Browse files Browse the repository at this point in the history
`uninstall` now `rm`s from `${DESTDIR}${PREFIX}/bin` instead of
defaulting to `/usr/local/bin`
  • Loading branch information
dexterous authored Oct 2, 2021
1 parent 868bc1a commit 3ce21c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3ce21c9

Please sign in to comment.