@@ -212,6 +212,7 @@ pub struct Config {
212212 pub npm : Option < PathBuf > ,
213213 pub gdb : Option < PathBuf > ,
214214 pub python : Option < PathBuf > ,
215+ pub reuse : Option < PathBuf > ,
215216 pub cargo_native_static : bool ,
216217 pub configure_args : Vec < String > ,
217218
@@ -610,6 +611,7 @@ define_config! {
610611 nodejs: Option <String > = "nodejs" ,
611612 npm: Option <String > = "npm" ,
612613 python: Option <String > = "python" ,
614+ reuse: Option <String > = "reuse" ,
613615 locked_deps: Option <bool > = "locked-deps" ,
614616 vendor: Option <bool > = "vendor" ,
615617 full_bootstrap: Option <bool > = "full-bootstrap" ,
@@ -1003,6 +1005,7 @@ impl Config {
10031005 config. npm = build. npm . map ( PathBuf :: from) ;
10041006 config. gdb = build. gdb . map ( PathBuf :: from) ;
10051007 config. python = build. python . map ( PathBuf :: from) ;
1008+ config. reuse = build. reuse . map ( PathBuf :: from) ;
10061009 config. submodules = build. submodules ;
10071010 set ( & mut config. low_priority , build. low_priority ) ;
10081011 set ( & mut config. compiler_docs , build. compiler_docs ) ;
0 commit comments