]> git.sur5r.net Git - openldap/commitdiff
Remove lint from awk script (trailing ;)
authorKurt Zeilenga <kurt@openldap.org>
Fri, 27 Aug 1999 17:51:40 +0000 (17:51 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 27 Aug 1999 17:51:40 +0000 (17:51 +0000)
Improve regex to allow detection of : inside of filenames.
Skip files with ':' in name
Fix noslash 'next' vs 'continue' bug

build/mkdep

index 62e1ad02c859d546df8e97e47e80d21251dbf4df..9c35e59dadf977b0480af11c3b61baba993cbc86 100755 (executable)
@@ -145,24 +145,26 @@ _EOF_
 $MKDEP_CC $MKDEP_CFLAGS $files | \
        sed -e 's; \./; ;g' | \
        $SED > $TMP.sed
-# dont pipe to awk.  SGI awk wants a filename as argument.
+# do not pipe to awk.  SGI awk wants a filename as argument.
 # (or '-', but I do not know if all other awks support that.)
 awk '
-$1 ~ /:/ {
-       filenm=$1;
-       dep=substr($0, length(filenm)+1);
+$1 ~ /:$/ {
+       filenm=$1
+       dep=substr($0, length(filenm)+1)
 }
-$1 !~ /:/ {
-       dep=$0;
+$1 !~ /:$/ {
+       dep=$0
 }
 /.*/ {
-       split(dep, depends, " ");
+       if ( filenm ~ /:.*:$/ ) next
+       split(dep, depends, " ")
        for(d in depends) {
-               dfile = depends[d];
-               if (( noslash == "yes") && (dfile ~ /^\// )) next
+               dfile = depends[d]
+               if ( dfile ~ /:/ ) continue
+               if (( noslash == "yes") && (dfile ~ /^\// )) continue
                if ( length(dfile) < 2 ) continue
-               rec = filenm " " dfile;
-               print rec;
+               rec = filenm " " dfile
+               print rec
        }
     }
 ' noslash="$NOSLASH" $TMP.sed >> $TMP