diff options
author | bapt <bapt@FreeBSD.org> | 2013-09-24 05:53:56 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-09-24 05:53:56 +0800 |
commit | 16574d0397a7869febf19f31951719870eb61769 (patch) | |
tree | 77a7e491052228d4c989c7b6eaff8ff9aa768399 /french/hyphen | |
parent | 70ab77c5f78dfa4407abc1730a02cca025dac36c (diff) | |
download | freebsd-ports-gnome-16574d0397a7869febf19f31951719870eb61769.tar.gz freebsd-ports-gnome-16574d0397a7869febf19f31951719870eb61769.tar.zst freebsd-ports-gnome-16574d0397a7869febf19f31951719870eb61769.zip |
Support stage
Diffstat (limited to 'french/hyphen')
-rw-r--r-- | french/hyphen/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/french/hyphen/Makefile b/french/hyphen/Makefile index e5b854f6e4d0..2c68e374e581 100644 --- a/french/hyphen/Makefile +++ b/french/hyphen/Makefile @@ -22,12 +22,11 @@ FRALIASES= fr_FR fr_BE fr_CA fr_CH fr_LU PLIST_FILES+= %%DATADIR%%/hyph_${ALIAS}.dic .endfor -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/hyph_fr.dic ${DATADIR}/ + ${MKDIR} ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/hyph_fr.dic ${STAGEDIR}${DATADIR}/ .for ALIAS in ${FRALIASES} - ${LN} -s hyph_fr.dic ${DATADIR}/hyph_${ALIAS}.dic + ${LN} -s hyph_fr.dic ${STAGEDIR}${DATADIR}/hyph_${ALIAS}.dic .endfor .include <bsd.port.mk> |