Commit a6bffd37 authored by Narayanan V's avatar Narayanan V

WL#4380

Modified the abi_check command to ignore space
differences between the .pp and the .out files.

Makefile.am:
  Modified the abi_check command to ignore space
  differences between the .pp and the .out files.
parent ebf0aa33
......@@ -299,7 +299,7 @@ do_abi_check:
$$file 2>/dev/null | \
@SED@ -e '/^# /d' \
-e '/^[ ]*$$/d' > $(top_builddir)/abi_check.out; \
@DIFF@ $$file.pp $(top_builddir)/abi_check.out; \
@DIFF@ -b $$file.pp $(top_builddir)/abi_check.out; \
@RM@ $(top_builddir)/abi_check.out; \
done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment