From 68b09f240d29ac65863cfa52dd5ab2c39c09a984 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 22 May 2013 22:34:48 +0000 Subject: Don't depend on the touch binary being present. We can simply create an empty file by doing a no-op and redirecting stdout. --- share/i18n/csmapper/Makefile | 4 ++-- share/i18n/esdb/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'share/i18n') 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 -- cgit v1.1