Don't hard-code a directory name for which we already have a variable.

Mostly, this makes it easier to use this Makefile as the basis for
another elisp port.
This commit is contained in:
Dima Dorfman 2005-02-11 08:28:35 +00:00
parent 58976b79bd
commit a58c32f6df
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=128509

View file

@ -38,9 +38,9 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/${__f} ${WRKSRC}/${__f}c \
${PREFIX}/${ELISP_DIR}
.endfor
${MKDIR} ${PREFIX}/share/doc/tuareg-mode
${MKDIR} ${PREFIX}/${DOC_DIR}
.for __f in ${DOC_FILES}
${INSTALL_DATA} ${WRKSRC}/${__f} ${PREFIX}/share/doc/tuareg-mode
${INSTALL_DATA} ${WRKSRC}/${__f} ${PREFIX}/${DOC_DIR}
.endfor
.include <bsd.port.mk>