summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-02 13:50:56 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-02 22:58:48 +0530
commit623e4436ead7e9cd5c0d29eb14437c5cc5d20674 (patch)
treea1035fe243b1ffb08baaba2b1d43d5d011912475 /include
parent96647a48d9ddf12e239d99af514a743721c06f84 (diff)
evanix: add --max-build flag
Diffstat (limited to 'include')
-rw-r--r--include/evanix.h1
-rw-r--r--include/solver_util.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/evanix.h b/include/evanix.h
index c4285fc..32f6ed6 100644
--- a/include/evanix.h
+++ b/include/evanix.h
@@ -8,6 +8,7 @@ struct evanix_opts_t {
bool ispipelined;
bool close_stderr_exec;
char *system;
+ int max_build;
};
extern struct evanix_opts_t evanix_opts;
diff --git a/include/solver_util.h b/include/solver_util.h
index 5c5f5d2..08f7f16 100644
--- a/include/solver_util.h
+++ b/include/solver_util.h
@@ -8,7 +8,7 @@ struct jobid {
struct job **jobs;
size_t filled, size;
uint32_t *cost;
- /* user directly asked for this to be build, not a transitively acquired
+ /* user directly asked for this to be built, not a transitively acquired
* dependency */
bool *isdirect;
};