From d88cb13bf702f68f4bd4f7e3f0ba0ff3825d0c62 Mon Sep 17 00:00:00 2001 From: Radim Kolar Date: Mon, 8 Jul 2024 09:41:56 +0200 Subject: [PATCH] largefiles.py: improve printed messages --- site_scons/largefiles.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site_scons/largefiles.py b/site_scons/largefiles.py index 6d32225..1f24015 100644 --- a/site_scons/largefiles.py +++ b/site_scons/largefiles.py @@ -2,7 +2,7 @@ # SCons Largefile enablement # # Version 1.4 -# 07-Jul-2024 +# 08-Jul-2024 # def enableLargeFiles(check,conf): @@ -23,10 +23,10 @@ def enableLargeFiles(check,conf): if not fseeko: # no fseeko we do not need off_t for anything offt = 0 - check.Message("Effective off_t size is ") + check.Message("Checking for effective size of off_t ... ") check.Result(str(offt)+" bytes") conf.env.Append(CPPFLAGS = '-DSIZEOF_OFF_T='+str(offt)) - check.Message("Checking if we have native large files ...") + check.Message("Checking if we have native large files ... ") if fseeko and int(offt)>=8 and int(ulong)>=8: conf.env.Append(CPPFLAGS = '-DNATIVE_LARGEFILES') rc=True