remove redundant libssh2 cmake build target option

This commit is contained in:
crazywhalecc 2023-09-12 00:08:00 +08:00 committed by Jerry Ma
parent 9da20497cc
commit 4b500f2dd8

View File

@ -29,7 +29,7 @@ trait libssh2
"-DENABLE_ZLIB_COMPRESSION={$enable_zlib} " . "-DENABLE_ZLIB_COMPRESSION={$enable_zlib} " .
'..' '..'
) )
->exec("cmake --build . -j {$this->builder->concurrency} --target libssh2") ->exec("cmake --build . -j {$this->builder->concurrency}")
->exec('make install DESTDIR=' . BUILD_ROOT_PATH); ->exec('make install DESTDIR=' . BUILD_ROOT_PATH);
$this->patchPkgconfPrefix(['libssh2.pc']); $this->patchPkgconfPrefix(['libssh2.pc']);
} }