diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-07-27 17:24:26 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-07-27 17:24:26 +0000 |
commit | 5fd5085b10ccff8dc0909b2b12e9795be5840984 (patch) | |
tree | a3b9cf11f4e630e4dcb66bbc0817b4f6c3635534 /textproc | |
parent | Do not patch the asm blocks on 5.x since GCC 3.x can take full (diff) |
Fix install by generating the plist during the pre-install phase.
Reported by: bento via kris
Notes
Notes:
svn path=/head/; revision=85689
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/bedic-data/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textproc/bedic-data/Makefile b/textproc/bedic-data/Makefile index a56241e78955..ced89bbd3b69 100644 --- a/textproc/bedic-data/Makefile +++ b/textproc/bedic-data/Makefile @@ -28,8 +28,10 @@ pre-fetch: @${ECHO_MSG} "should be installed; currently, it is set to ${DICTIONARIES}" @${ECHO_MSG} "Set it to one or more of the following: ${DICT_ALL}" +pre-install: + @${ECHO_CMD} ${DICTIONARIES} | ${TR} ' ' '\n' | ${SED} 's,^,share/,' > ${PLIST} + do-install: - ${ECHO_CMD} ${DICTIONARIES} | ${TR} ' ' '\n' | ${SED} 's,^,share/,' > ${PLIST} ${MKDIR} ${DICT_DIR} ${INSTALL} ${DICTIONARIES:S,^,${WRKSRC}/,} ${DICT_DIR}/ |