]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
bootstrap: Actually build gtest
authorTom Hromatka <tom.hromatka@oracle.com>
Fri, 10 Jan 2020 22:44:04 +0000 (22:44 +0000)
committerTom Hromatka <tom.hromatka@oracle.com>
Fri, 10 Jan 2020 23:10:06 +0000 (23:10 +0000)
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 <tom.hromatka@oracle.com>
Reviewed-by: Dhaval Giani <dhaval.giani@oracle.com>
bootstrap.sh

index 0668f3dcc8c4f48a6f9576c5ed383d732ae33b47..8dbc10f59afd4650762a8ca394094923e4af96a1 100755 (executable)
@@ -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