summaryrefslogtreecommitdiffstats
path: root/share/i18n
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2016-03-11 23:45:36 +0000
committerbdrewery <bdrewery@FreeBSD.org>2016-03-11 23:45:36 +0000
commit2c67a820e7de695231dd0a64dcad287b3b04f404 (patch)
treea9a0440044b22f2fbde58efdd79f06363d33c47c /share/i18n
parentc3a42f86a770b004fc371083a609ae9fa2d29d0e (diff)
downloadFreeBSD-src-2c67a820e7de695231dd0a64dcad287b3b04f404.zip
FreeBSD-src-2c67a820e7de695231dd0a64dcad287b3b04f404.tar.gz
Remove exists() checks so normal out-of-date handling can be used.
This also fixes META MODE rebuilding these because the 'number of build commands' changed from the previous build. MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'share/i18n')
-rw-r--r--share/i18n/esdb/BIG5/Makefile4
-rw-r--r--share/i18n/esdb/Makefile.part6
-rw-r--r--share/i18n/esdb/UTF/Makefile4
3 files changed, 5 insertions, 9 deletions
diff --git a/share/i18n/esdb/BIG5/Makefile b/share/i18n/esdb/BIG5/Makefile
index 4852b83..f7b1512 100644
--- a/share/i18n/esdb/BIG5/Makefile
+++ b/share/i18n/esdb/BIG5/Makefile
@@ -13,12 +13,10 @@ Big5_$i_variable!= sed \
${.CURDIR}/Big5.variable
.endfor
.for i in ${PART}
-.if !exists(Big5-${i:S/:/@/}.src)
# XXX: FIXME
Big5-${i:S/:/@/}.src: Big5.src Big5.variable
sed -e 's/encoding/Big5-$i/' \
-e 's/variable/${Big5_$i_variable}/' \
${.CURDIR}/Big5.src > $@
- @echo Big5-${i:S/:/@/}.src >>.tmpfiles
-.endif
+ @echo ${.TARGET} >>.tmpfiles
.endfor
diff --git a/share/i18n/esdb/Makefile.part b/share/i18n/esdb/Makefile.part
index a9e140a..8de4045 100644
--- a/share/i18n/esdb/Makefile.part
+++ b/share/i18n/esdb/Makefile.part
@@ -67,11 +67,9 @@ codesets: ${ESDB}
.if !defined(NO_PREPROC)
.for i in ${PART}
-.if !exists(${EPREFIX}${i:S/:/@/}.src)
${EPREFIX}${i:S/:/@/}.src: ${CODE}.src
- sed ${SED_EXP:S@%%PART%%@${i}@} ${.CURDIR}/${CODE}.src > ${EPREFIX}${i:S/:/@/}.src
- @echo ${EPREFIX}${i:S/:/@/}.src >>.tmpfiles
-.endif
+ sed ${SED_EXP:S@%%PART%%@${i}@} ${.ALLSRC} > ${.TARGET}
+ @echo ${.TARGET} >>.tmpfiles
.endfor
.endif
diff --git a/share/i18n/esdb/UTF/Makefile b/share/i18n/esdb/UTF/Makefile
index 92ddcdd..a8e21ef 100644
--- a/share/i18n/esdb/UTF/Makefile
+++ b/share/i18n/esdb/UTF/Makefile
@@ -36,6 +36,6 @@ ${EPREFIX}${i}.src: ${CODE}.src
sed -e 's/UTF-x/UTF-${i}/' \
-e 's/UTF-mod/${UTF-${i}-mod}/' \
-e 's/UTF-var/${UTF-${i}-var}/' \
- ${.CURDIR}/${CODE}.src > ${EPREFIX}${i:S/:/@/}.src
- @echo ${EPREFIX}${i:S/:/@/}.src >>.tmpfiles
+ ${.ALLSRC} > ${.TARGET}
+ @echo ${.TARGET} >>.tmpfiles
.endfor
OpenPOWER on IntegriCloud