diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-12-08 11:49:43 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-12-08 12:13:37 +0100 |
commit | 6cc2e195700e6ce02c04160c0c93af6d325d89d7 (patch) | |
tree | 87f76acebf73498d0fab528e043ea84ca1f8b863 /src/configure.cc | |
parent | 87997f6285fdba420c00e740d26f98f7e7e06504 (diff) |
Call execute with full settings.execute_with_env
Diffstat (limited to 'src/configure.cc')
-rw-r--r-- | src/configure.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.cc b/src/configure.cc index c08ed88..4b2fbf0 100644 --- a/src/configure.cc +++ b/src/configure.cc @@ -915,5 +915,5 @@ int reconfigure(const ctor::settings& global_settings, int argc, char* argv[]) return 0; // this was originally invoked by configure, don't loop } - return execute(argv[0], args); + return execute(settings, argv[0], args); } |