From: Tom Hromatka Date: Fri, 10 Jan 2020 22:44:04 +0000 (+0000) Subject: bootstrap: Actually build gtest X-Git-Tag: v0.42~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35727a33be61d02a30ad251071daaf484d4444fb;p=thirdparty%2Flibcgroup.git bootstrap: Actually build gtest googletest should be entirely compiled into an *.la prior to ./configure. The *.la should be added as an extra distribution item to the dist tarball. This will make it so that the distribution vendors do not need to rebuild googletest. Signed-off-by: Tom Hromatka Reviewed-by: Dhaval Giani --- diff --git a/bootstrap.sh b/bootstrap.sh index 0668f3dc..8dbc10f5 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -11,8 +11,8 @@ fi # configure googletest git submodule update --init --recursive pushd googletest -git checkout release-1.8.1 -cmake . +autoreconf -i +./configure make popd