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>
# configure googletest
git submodule update --init --recursive
pushd googletest
-git checkout release-1.8.1
-cmake .
+autoreconf -i
+./configure
make
popd