diff options
author | Narayanan V <v.narayanan@sun.com> | 2008-07-23 12:03:27 +0530 |
---|---|---|
committer | Narayanan V <v.narayanan@sun.com> | 2008-07-23 12:03:27 +0530 |
commit | 223c0177e71c4d586d36f1e595dfe7145b28df3d (patch) | |
tree | 735d4343db4838fb9fe676a7a70d6ebff0cb3937 /Makefile.am | |
parent | cadcb867bc51dcbfa1df46759d6ece2580fa1e64 (diff) | |
download | mariadb-git-223c0177e71c4d586d36f1e595dfe7145b28df3d.tar.gz |
WL#4380
fixed the abi_check rule to handle failure in the
diff command on the solaris platform.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 222785ea3b1..77318baf07e 100644 --- a/Makefile.am +++ b/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 |