Skip to content

Commit

Permalink
Fix #8704 - Refactor install-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Oct 18, 2017
1 parent dbdd7a1 commit ae73a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ install-man-symlink:
install-doc:
${INSTALL_DIR} "${DESTDIR}${DOCDIR}"
for FILE in doc/* ; do \
[ -f $$FILE ] && ${INSTALL_DATA} $$FILE "${DESTDIR}${DOCDIR}" || true ; \
if [ -f $$FILE ]; then ${INSTALL_DATA} $$FILE "${DESTDIR}${DOCDIR}" || true ; fi; \
done

install-doc-symlink:
Expand Down

0 comments on commit ae73a84

Please sign in to comment.