mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Ignore makefile projects failing to clean.
This commit is contained in:
parent
8afe04a35d
commit
57cd616f59
1 changed files with 1 additions and 2 deletions
|
@ -533,8 +533,7 @@ void BuildPackage(metainfo_t* minfo)
|
|||
const char* clean_target = dictionary_get(pinfo, "pkg.make.clean-target",
|
||||
default_clean_target);
|
||||
const char* ignore_clean_failure_var =
|
||||
dictionary_get(pinfo, "pkg.make.ignore-clean-failure",
|
||||
!strcmp(build_system, "configure") ? "true" : "false");
|
||||
dictionary_get(pinfo, "pkg.make.ignore-clean-failure", "true");
|
||||
bool ignore_clean_failure = parse_boolean(ignore_clean_failure_var);
|
||||
|
||||
if ( SHOULD_DO_BUILD_STEP(BUILD_STEP_PRE_CLEAN, minfo) && !use_build_dir )
|
||||
|
|
Loading…
Reference in a new issue