From 35727a33be61d02a30ad251071daaf484d4444fb Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Fri, 10 Jan 2020 22:44:04 +0000 Subject: [PATCH] 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 --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2