From ec170d179f9cf0637adacee5278561667546570b Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Mon, 2 Oct 2000 17:51:30 +0000 Subject: [PATCH] Some translatros produce white space just before the ':' in dependencies. Trim this. --- build/mkdep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.) -- 2.39.5