From: Joel Rosdahl Date: Mon, 13 Jan 2020 20:35:11 +0000 (+0100) Subject: misc/performance: Fix --no-cpp2 and --no-stats options X-Git-Tag: v4.0~682 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcd4efcc0eb6cddeb4d801bb6b676d68bdf26274;p=thirdparty%2Fccache.git misc/performance: Fix --no-cpp2 and --no-stats options They broke in an unsuccessful cherry-pick (0827d070) as noted in #503. (cherry picked from commit 0948fb13f07c756b8e056efdec46560e0faf37d1) --- diff --git a/misc/performance b/misc/performance index 0283933fb..d33ad646f 100755 --- a/misc/performance +++ b/misc/performance @@ -285,10 +285,10 @@ def main(argv): type="int", ) op.add_option( - "--nocpp2", help="compile preprocessed output", action="store_true" + "--no-cpp2", help="compile preprocessed output", action="store_true" ) op.add_option( - "--nostats", help="don't write statistics", action="store_true" + "--no-stats", help="don't write statistics", action="store_true" ) op.add_option( "-n",