From: Kurt Zeilenga Date: Mon, 2 Oct 2000 17:51:30 +0000 (+0000) Subject: Some translatros produce white space just before the ':' in dependencies. X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1834 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ec170d179f9cf0637adacee5278561667546570b;p=openldap Some translatros produce white space just before the ':' in dependencies. Trim this. --- diff --git a/build/mkdep b/build/mkdep index d2e316865e..6e54d035a5 100755 --- a/build/mkdep +++ b/build/mkdep @@ -144,7 +144,7 @@ cat << _EOF_ >> $TMP _EOF_ $MKDEP_CC $MKDEP_CFLAGS $files | \ - sed -e 's; \./; ;g' | \ + sed -e 's; \./; ;g' -e 's/ :/:/' | \ $SED > $TMP.sed # do not pipe to awk. SGI awk wants a filename as argument. # (or '-', but I do not know if all other awks support that.)