From f75224a8435d0eb9cdda79f8bc571eeef25a8e33 Mon Sep 17 00:00:00 2001 From: wtz Date: Wed, 19 Jul 2023 12:35:52 +0800 Subject: Fix grammar --- xmake/modules/private/cache/build_cache.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmake/modules/private/cache/build_cache.lua') diff --git a/xmake/modules/private/cache/build_cache.lua b/xmake/modules/private/cache/build_cache.lua index bac6c069b..b0960c37a 100644 --- a/xmake/modules/private/cache/build_cache.lua +++ b/xmake/modules/private/cache/build_cache.lua @@ -260,10 +260,10 @@ function build(program, argv, opt) local objectfile_cached, objectfile_infofile = get(cachekey) if objectfile_cached then os.cp(objectfile_cached, cppinfo.objectfile) - -- we need update mtime for incremental compilation + -- we need to update mtime for incremental compilation -- @see https://github.com/xmake-io/xmake/issues/2620 os.touch(cppinfo.objectfile, {mtime = os.time()}) - -- we need get outdata/errdata to show warnings, + -- we need to get outdata/errdata to show warnings, -- @see https://github.com/xmake-io/xmake/issues/2452 if objectfile_infofile and os.isfile(objectfile_infofile) then local extrainfo = io.load(objectfile_infofile) -- cgit v1.3.1