# HG changeset patch # User Doug Simon # Date 1435056232 -7200 # Node ID 5b3e245aca2bc54d17c6d49e7849c424c8d9d940 # Parent acd43093257dcc180a875fdbe564c37e46e6adbf added witness for when class files are out of date diff -r acd43093257d -r 5b3e245aca2b mxtool/mx.py --- a/mxtool/mx.py Tue Jun 23 12:41:17 2015 +0200 +++ b/mxtool/mx.py Tue Jun 23 12:43:52 2015 +0200 @@ -3022,7 +3022,7 @@ classfile = TimeStampFile(outputDir + javafile[len(sourceDir):-len('java')] + 'class') if not classfile.exists() or classfile.isOlderThan(javafile): if basename(classfile.path) != 'package-info.class': - buildReason = 'class file(s) out of date' + buildReason = 'class file(s) out of date (witness: ' + classfile.path + ')' break apsOutOfDate = p.update_current_annotation_processors_file()