]> git.sur5r.net Git - openldap/commitdiff
Some translatros produce white space just before the ':' in dependencies.
authorKurt Zeilenga <kurt@openldap.org>
Mon, 2 Oct 2000 17:51:30 +0000 (17:51 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 2 Oct 2000 17:51:30 +0000 (17:51 +0000)
Trim this.

build/mkdep

index d2e316865ee29d9373d15f787c4baf30b201fb46..6e54d035a50824f84c06e38cc2fe4fdb3b0cd88e 100755 (executable)
@@ -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.)