diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-18 14:42:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-18 17:38:09 -0700 |
commit | da5aa06cc0157e790dccfd29fd329b44cfc33447 (patch) | |
tree | ecbe969a847c64c98d0314e20b7dcd1eb2edf07e /packaging | |
parent | c8f40c57c9d0256324f41fdc3f855521c11c5321 (diff) | |
download | subsurface-da5aa06cc0157e790dccfd29fd329b44cfc33447.tar.gz |
build-system: get ready for switching to libgit2 1.0
We want to build this against its own regex package to avoid adding more system
dependencies.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/ubuntu/debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ubuntu/debian/rules b/packaging/ubuntu/debian/rules index 97fa17b6d..c2c690078 100755 --- a/packaging/ubuntu/debian/rules +++ b/packaging/ubuntu/debian/rules @@ -54,7 +54,7 @@ override_dh_auto_configure: make -j8 ; \ make install) (mkdir libgit2/build ; cd libgit2/build ; \ - cmake -DCMAKE_INSTALL_PREFIX=$(MY_INSTALL_ROOT) -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF -DBUILD_EXAMPLES=OFF .. ; \ + cmake -DCMAKE_INSTALL_PREFIX=$(MY_INSTALL_ROOT) -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF -DREGEX_BACKEND=builtin .. ; \ make -j8 ; \ make install) (mkdir subsurface-build ; cd subsurface-build ; \ |