return 0;
}
- if(!prepare_build())
- return 1;
-
- if(conf_only)
- return 0;
-
const Architecture &native_arch = builder.get_native_arch();
const Architecture ¤t_arch = builder.get_current_arch();
logger.log("environment", format("Building on %s, for %s%s", native_arch.get_name(),
const BuildType &build_type = builder.get_build_type();
logger.log("environment", format("Build type is %s", build_type.get_name()));
+ if(!prepare_build())
+ return 1;
+
+ if(conf_only)
+ return 0;
+
BuildGraph &build_graph = builder.get_build_graph();
PackageManager &package_manager = builder.get_package_manager();
list<string> package_details;