diff options
| author | ruki <[email protected]> | 2022-09-23 12:26:58 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-23 12:26:58 +0800 |
| commit | e7dccdf5eb397d31031d242bc5d39990bdc370de (patch) | |
| tree | cb68fceb2011c864529c910422dba7b03b02bead /xmake/modules/package/tools/autoconf.lua | |
| parent | 766f61852a6665a6c180baf37518f7ea988e48e3 (diff) | |
| parent | 31e4124be2ae66eb10ac43f0b673ee1728104a67 (diff) | |
Merge pull request #2858 from xmake-io/trybuild
Improve trybuild to build 3rd source library using xmake-repo scripts
Diffstat (limited to 'xmake/modules/package/tools/autoconf.lua')
| -rw-r--r-- | xmake/modules/package/tools/autoconf.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/package/tools/autoconf.lua b/xmake/modules/package/tools/autoconf.lua index b8429e9f5..c9fa019bf 100644 --- a/xmake/modules/package/tools/autoconf.lua +++ b/xmake/modules/package/tools/autoconf.lua @@ -444,7 +444,7 @@ function build(package, configs, opt) opt = opt or {} local njob = opt.jobs or option.get("jobs") or tostring(os.default_njob()) local argv = {"-j" .. njob} - if option.get("verbose") then + if option.get("diagnosis") then table.insert(argv, "V=1") end if opt.makeconfigs then @@ -471,7 +471,7 @@ function install(package, configs, opt) -- do install local argv = {"install"} - if option.get("verbose") then + if option.get("diagnosis") then table.insert(argv, "V=1") end if opt.makeconfigs then |
