diff options
author | Dima Dorfman <dd@FreeBSD.org> | 2005-02-11 08:28:35 +0000 |
---|---|---|
committer | Dima Dorfman <dd@FreeBSD.org> | 2005-02-11 08:28:35 +0000 |
commit | a58c32f6df0e6ce0ce39e02dea5060ecee652195 (patch) | |
tree | dbd25d1caf3a4c13562ca101d97e59e3737e540a | |
parent | Add ses, the Simple Emacs Spreadsheet (diff) |
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.
-rw-r--r-- | lang/tuareg-mode.el/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tuareg-mode.el/Makefile b/lang/tuareg-mode.el/Makefile index c878cb853dad..9845d62059c8 100644 --- a/lang/tuareg-mode.el/Makefile +++ b/lang/tuareg-mode.el/Makefile @@ -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> |