diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-03-14 21:04:37 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-03-15 04:04:49 +0000 |
commit | 4aafd44e31cd5507fe60163433531cf95c1a418a (patch) | |
tree | b098041862f9bb97cd8d72734cd6aac7f52b3da4 | |
parent | 42f299be6abb302f32cec78b1c0812364c9f9285 (diff) | |
download | wireshark-4aafd44e31cd5507fe60163433531cf95c1a418a.tar.gz wireshark-4aafd44e31cd5507fe60163433531cf95c1a418a.tar.bz2 wireshark-4aafd44e31cd5507fe60163433531cf95c1a418a.zip |
Dump out abi_logs/log.txt if abi-compliance-checker fails.
That seems to be where we're telling it to send its logs.
Change-Id: Ic15370bc1af858b82f0964fcc35189039061ccb7
Reviewed-on: https://code.wireshark.org/review/14476
Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r-- | epan/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/Makefile.am b/epan/Makefile.am index 4cd8b77030..3a830e59df 100644 --- a/epan/Makefile.am +++ b/epan/Makefile.am @@ -337,7 +337,7 @@ dumpabi-libwireshark: all abi-descriptor.xml cp wmem/*.h abi-check-headers/wmem abi-compliance-checker -log-path abi_logs/log.txt -l libwireshark -v1 `readlink .libs/libwireshark.so | sed 's/.*\.so\.//'` \ -relpath $(abs_srcdir) -dump-abi abi-descriptor.xml || \ - cat logs/libwireshark/[0-9]*/log.txt + cat abi_logs/log.txt logs/libwireshark/[0-9]*/log.txt cp -f abi_dumps/libwireshark/libwireshark_* .libs/ cd .libs && ln -sf libwireshark_*.abi.tar.gz libwireshark.abi.tar.gz |