Some translatros produce white space just before the ':' in dependencies.

Trim this.
This commit is contained in:
Kurt Zeilenga 2000-10-02 17:51:30 +00:00
parent 778b665242
commit ec170d179f

View File

@ -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.)