Sfoglia il codice sorgente

Build: remove slashes after DESTDIR from commands in uninstall target

master
Emanuele Torre 4 anni fa
parent
commit
9859c2a555
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile Vedi File

@@ -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

Loading…
Annulla
Salva