Skip to content
This repository has been archived by the owner on Nov 13, 2021. It is now read-only.

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchweaver committed May 14, 2020
1 parent 15711af commit ccd5ee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ all:
@>&2 echo "Use 'make install'"

install:
install -D -m 0755 ${NAME} ${PREFIX}/bin/${NAME}
install -D -m 0755 ${NAME} ${DESTDIR}${PREFIX}/bin/${NAME}

uninstall:
rm ${PREFIX}/bin/${NAME}
rm ${DESTDIR}${PREFIX}/bin/${NAME}

test:
shellcheck -s sh ${NAME}

0 comments on commit ccd5ee4

Please sign in to comment.