Introduction
Introduction Statistics Contact Development Disclaimer Help
Always quote variables in {de,}install targets for consistency - clic - Clic is…
git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65…
Log
Files
Refs
Tags
README
LICENSE
---
commit 207b9dfd4a861e92479c21cda6fd228f9185d300
parent 7142516af61d7faba20cc3dadb373eebb05ea8f6
Author: Leonardo Taccari <[email protected]>
Date: Mon, 13 Aug 2018 23:04:54 +0200
Always quote variables in {de,}install targets for consistency
Diffstat:
M Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -19,16 +19,16 @@ install: ${BIN}
@mkdir -p "${DESTDIR}${BINDIR}"
@cp -f clic "${DESTDIR}${BINDIR}/${BIN}"
@chmod 755 "${DESTDIR}${BINDIR}/${BIN}"
- @echo installing manual page to ${DESTDIR}${MANDIR}/man1
- @mkdir -p ${DESTDIR}${MANDIR}/man1
+ @echo installing manual page to "${DESTDIR}${MANDIR}/man1"
+ @mkdir -p "${DESTDIR}${MANDIR}/man1"
@cp -f clic.1 "${DESTDIR}${MANDIR}/man1/clic.1"
- @chmod 644 ${DESTDIR}${MANDIR}/man1/clic.1
+ @chmod 644 "${DESTDIR}${MANDIR}/man1/clic.1"
uninstall:
@echo removing executable file from "${DESTDIR}${PREFIX}/bin"
@rm -f "${DESTDIR}${BINDIR}/${BIN}"
- @echo removing manual page from ${DESTDIR}${MANDIR}/man1
- @rm -f ${DESTDIR}${MANDIR}/man1/clic.1
+ @echo removing manual page from "${DESTDIR}${MANDIR}/man1"
+ @rm -f "${DESTDIR}${MANDIR}/man1/clic.1"
clean:
rm -f "${BIN}" clic.o clic.eclh clic.cxx
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.