Ver código fonte

Build: remove slashes after DESTDIR from commands in uninstall target

master
Emanuele Torre 4 anos atrás
pai
commit
9859c2a555
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile Ver arquivo

@@ -21,7 +21,7 @@ install: all
install -D -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX}/man1/${PROG}.1

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

.PHONY: all clean install uninstall

Carregando…
Cancelar
Salvar