An increasing number of distributions ship with GCC 4.9 (including Fedora and Ubuntu) that has -Werror=date-time. This causes kernel compilation to fail because the builds are not exactly reproducible.
This simply removes the use of those constants, which was already done for the upstream Linux version of the module. It retains the version string, however, which should provide the same information in most cases. Signed-off-by: Jesse Gross <je...@nicira.com> --- datapath/datapath.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/datapath/datapath.c b/datapath/datapath.c index c0af9ad..3c97b86 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -2270,8 +2270,7 @@ static int __init dp_init(void) BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb)); - pr_info("Open vSwitch switching datapath %s, built "__DATE__" "__TIME__"\n", - VERSION); + pr_info("Open vSwitch switching datapath %s\n", VERSION); err = action_fifos_init(); if (err) -- 2.1.0 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev