summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-21 13:51:38 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:27:05 +0000
commit9b214383c151379afca2e34497804a59f16c05ef (patch)
treec1db1883c540ea0dc4e1bf203a9c7ffb8f6e3df3
parentcc6e2a5936623a3055211f98c987fde62b6a16a6 (diff)
Add obj_dat.h to the list of files that will not be processed by
openssl-format-source Reviewed-by: Tim Hudson <tjh@openssl.org>
-rwxr-xr-xutil/openssl-format-source9
1 files changed, 6 insertions, 3 deletions
diff --git a/util/openssl-format-source b/util/openssl-format-source
index 8cf27d3af3..e4944ddb68 100755
--- a/util/openssl-format-source
+++ b/util/openssl-format-source
@@ -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