diff options
author | ed <ed@FreeBSD.org> | 2013-05-22 22:34:48 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2013-05-22 22:34:48 +0000 |
commit | 68b09f240d29ac65863cfa52dd5ab2c39c09a984 (patch) | |
tree | 7aa85536c76deb7469557c784d9958f006bf0915 /share/i18n | |
parent | 1402439a41c6454aff84f83ab3d46fbc88cb72cb (diff) | |
download | FreeBSD-src-68b09f240d29ac65863cfa52dd5ab2c39c09a984.zip FreeBSD-src-68b09f240d29ac65863cfa52dd5ab2c39c09a984.tar.gz |
Don't depend on the touch binary being present.
We can simply create an empty file by doing a no-op and redirecting stdout.
Diffstat (limited to 'share/i18n')
-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 7a0e372..54746f9 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 419ca21..3cd372c 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 |