diff options
author | Ed Schouten <ed@FreeBSD.org> | 2013-05-22 22:34:48 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2013-05-22 22:34:48 +0000 |
commit | 57778110dc137323aaf8c7f1b4f3baf84b569e10 (patch) | |
tree | 7aa85536c76deb7469557c784d9958f006bf0915 | |
parent | f2dc9238d7bfd56b6cdcf5737a7445e876055ee1 (diff) | |
download | src-test2-57778110dc137323aaf8c7f1b4f3baf84b569e10.tar.gz src-test2-57778110dc137323aaf8c7f1b4f3baf84b569e10.zip |
Notes
-rw-r--r-- | share/i18n/csmapper/Makefile | 4 | ||||
-rw-r--r-- | share/i18n/esdb/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/share/i18n/csmapper/Makefile b/share/i18n/csmapper/Makefile index 7a0e3721f775..54746f97006e 100644 --- a/share/i18n/csmapper/Makefile +++ b/share/i18n/csmapper/Makefile @@ -7,7 +7,7 @@ SUBDIR= APPLE AST BIG5 CNS CP EBCDIC GB GEORGIAN ISO646 ISO-8859 JIS \ KAZAKH KOI KS MISC TCVN mapper.dir: ${SUBDIR} - touch ${.TARGET} + > ${.TARGET} .for i in ${SUBDIR} cat ${i}/mapper.dir.${i} >> ${.TARGET} .endfor @@ -18,7 +18,7 @@ FILES+= mapper.dir mapper.dir.db CLEANFILES+= mapper.dir mapper.dir.db charset.pivot: ${SUBDIR} - touch ${.TARGET} + > ${.TARGET} .for i in ${SUBDIR} cat ${i}/charset.pivot.${i} >> ${.TARGET} .endfor diff --git a/share/i18n/esdb/Makefile b/share/i18n/esdb/Makefile index 419ca21157ea..3cd372ca6842 100644 --- a/share/i18n/esdb/Makefile +++ b/share/i18n/esdb/Makefile @@ -10,7 +10,7 @@ FILES+= esdb.dir esdb.dir.db esdb.alias esdb.alias.db CLEANFILES= ${FILES} esdb.dir: ${SUBDIR} - touch $@ + > $@ .for i in ${SUBDIR} cat ${i}/esdb.dir.${i} >>${.TARGET} .endfor @@ -18,7 +18,7 @@ esdb.dir.db: esdb.dir ${MKESDB} -m -o ${.TARGET} ${.ALLSRC} esdb.alias: ${SUBDIR} - touch $@ + > $@ .for i in ${SUBDIR} cat ${i}/esdb.alias.${i} >>${.TARGET} .endfor |