From e1207950e5051a7d4413737d8305e1767dd2e1b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= Date: Thu, 25 Aug 2016 15:27:53 +0200 Subject: Get rid of __DATE__ use MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit clang 4.0 warns about __DATE__ resulting in non-reproducable builds - and we build powertop with -Werror Change-Id: I872a207b35595bb9f775ee7fc5348a3e99090a30 Signed-off-by: Bernhard Rosenkränzer --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e692218..9fe3c4e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -101,7 +101,7 @@ static const struct option long_options[] = static void print_version() { - printf(_("PowerTOP version " POWERTOP_VERSION ", compiled on " __DATE__ "\n")); + printf(_("PowerTOP version " POWERTOP_VERSION "\n")); } static bool set_refresh_timeout() -- cgit v1.2.3