diff options
author | merakor <cem@ckyln.com> | 2021-08-13 08:04:46 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-08-13 08:04:46 +0000 |
commit | f8c1e8df47571ca94005f13cdcb2f12ffe3fcb8a (patch) | |
tree | 356e7f480b16035188202b87ab9655d7ae63d21a /Makefile | |
parent | b50af80f5bfa9bbd70d84bc18fcff9da7bdb99a1 (diff) | |
download | cpt-f8c1e8df47571ca94005f13cdcb2f12ffe3fcb8a.tar.gz |
Makefile: fix install target
FossilOrigin-Name: 09ac753ee6dbfdb7a461cfeb28ba7dfd64e6ec77fb1f7e8dc8af8d5f9215124f
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,9 +34,9 @@ dist: docs/cpt.info install: all test "${DOCS}" != yes || ${MAKE} -C docs install [ -f docs/cpt.info ] && \ - ${INSTALL_SH} -Dm644 docs/cpt.info ${DESTDIR}${INFODIR}/cpt.info + ${INSTALL_SH} -Dm644 docs/cpt.info ${DESTDIR}${INFODIR}/cpt.info ||: [ -f docs/cpt.txt ] && \ - ${INSTALL_SH} -Dm644 docs/cpt.txt ${DESTDIR}${DOCDIR}/cpt.txt + ${INSTALL_SH} -Dm644 docs/cpt.txt ${DESTDIR}${DOCDIR}/cpt.txt ||: ${INSTALL_SH} -Dm644 CHANGELOG.md ${DESTDIR}${DOCDIR}/CHANGELOG ${INSTALL_SH} -Dm755 -t ${DESTDIR}${BINDIR} ${BIN} ${INSTALL_SH} -Dm644 -t ${DESTDIR}${MAN1} man/*.1 |