File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -97,12 +97,14 @@ fn download_archive_unix(out_dir: &Path) -> Fallible<()> {
9797}
9898
9999fn build_fftw ( flags : & [ & str ] , src_dir : & Path , out_dir : & Path ) {
100- run ( Command :: new ( fs:: canonicalize ( src_dir. join ( "configure" ) ) . unwrap ( ) )
101- . arg ( "--with-pic" )
102- . arg ( "--enable-static" )
103- . arg ( format ! ( "--prefix={}" , out_dir. display( ) ) )
104- . args ( flags)
105- . current_dir ( & src_dir) ) ;
100+ run (
101+ Command :: new ( fs:: canonicalize ( src_dir. join ( "configure" ) ) . unwrap ( ) )
102+ . arg ( "--with-pic" )
103+ . arg ( "--enable-static" )
104+ . arg ( format ! ( "--prefix={}" , out_dir. display( ) ) )
105+ . args ( flags)
106+ . current_dir ( & src_dir) ,
107+ ) ;
106108 run ( Command :: new ( "make" )
107109 . arg ( format ! ( "-j{}" , var( "NUM_JOBS" ) . unwrap( ) ) )
108110 . current_dir ( & src_dir) ) ;
You can’t perform that action at this time.
0 commit comments