Add obj_dat.h to the list of files that will not be processed by
authorMatt Caswell <matt@openssl.org>
Wed, 21 Jan 2015 13:51:38 +0000 (13:51 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:20:08 +0000 (09:20 +0000)
openssl-format-source

Reviewed-by: Tim Hudson <tjh@openssl.org>
util/openssl-format-source

index 8cf27d3af3adedc0652a6cf03d4df943d94b34ea..e4944ddb684a8794fc6d4b905ae934b12bf9096d 100755 (executable)
@@ -85,9 +85,12 @@ do
       tmp=$(mktemp /tmp/indent.XXXXXX)
       trap 'rm -f "$tmp"' HUP INT TERM EXIT
 
-      case $j in 
+      case `basename $j` in 
        # the list of files that indent is unable to handle correctly
        # that we simply leave alone for manual formatting now
+       obj_dat.h)
+         echo "skipping $j"
+         ;;
        *)
          if [ "$COMMENTS" = "true" ]; then
            # we have to mark single line comments as /*- ...*/ to stop indent
@@ -129,10 +132,10 @@ do
              > "$tmp"
          else
            expand "$j" | indent $INDENT_ARGS > "$tmp"
-         fi
+         fi;
+         mv "$tmp" "$j"
          ;;
       esac
-      mv "$tmp" "$j"
     fi
   done
 done