Browse Source

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.
pull/374/head
Narayanan V 18 years ago
parent
commit
0763b15b1f
  1. 2
      Makefile.am

2
Makefile.am

@ -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

Loading…
Cancel
Save