From 7f90de5f31c3b58d451dcc271ccdee44aa7fe3ec Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Fri, 20 Aug 2021 14:40:41 -0700 Subject: [PATCH] core: Fix two typos (reported by Gabriel Arrobo) --- src/core/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/wscript b/src/core/wscript index 67c7ce0c6..8b3b489de 100644 --- a/src/core/wscript +++ b/src/core/wscript @@ -48,7 +48,7 @@ def options(opt): dest='check_version') opt.add_option('--enable-build-version', - help=("Check git repository for changes and update build version" + help=("Check git repository for changes and update build version " "during waf build"), action="store_true", default=False, dest='enable_build_version') @@ -57,7 +57,7 @@ def configure(conf): conf.load('versioning', ['waf-tools']) - conf.require_boost_incs('core', 'ns-3 core module', required=False); + conf.require_boost_incs('core', 'ns-3 core module', required=False) int64x64_impl = Options.options.int64x64_impl if int64x64_impl == 'default' or int64x64_impl == 'int128':