Commit ca7dbffe authored by Narayanan V's avatar Narayanan V

WL#4380

fixed the abi_check rule to handle failure in the
diff command on the solaris platform.

Makefile.am:
  Removed the -B option from the diff command used
  on the abi_check rule.
parent 3fab9b92
......@@ -306,7 +306,7 @@ do_abi_check:
-e '/^[ ]*$$/d' \
-e '/^#pragma GCC set_debug_pwd/d' > \
$(top_builddir)/abi_check.out; \
@DIFF@ -wB $$file.pp $(top_builddir)/abi_check.out; \
@DIFF@ -w $$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