Skip to content

Commit

Permalink
Makefile: fix man installa and bin uninstall
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Aug 3, 2023
1 parent d81973e commit a03cb18
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 @@ -22,12 +22,12 @@ install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
mkdir -p ${DESTDIR}${MANPREFIX}/man1
cp -f revdep ${DESTDIR}${PREFIX}/bin/
cp -f revdep.1 ${DESTDIR}${MANPREFIX}/man1/
cp -f ${MAN1} ${DESTDIR}${MANPREFIX}/man1/
chmod 0755 ${DESTDIR}${PREFIX}/bin/revdep
chmod 0644 ${DESTDIR}${MANPREFIX}/man1/revdep.1

uninstall:
rm -f ${DESTDIR}${PREFIX}/revdep
rm -f ${DESTDIR}${PREFIX}/bin/revdep
rm -f ${DESTDIR}${MANPREFIX}/man1/revdep.1

install-bashcomp:
Expand Down

0 comments on commit a03cb18

Please sign in to comment.