mirror of https://github.com/wolfSSL/wolfTPM.git
Cleanups for autogen.sh.
parent
bcf2647ebc
commit
c96ffb9ad1
28
autogen.sh
28
autogen.sh
|
@ -18,28 +18,6 @@ if [ -n "$WSL_DISTRO_NAME" ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Git hooks should come before autoreconf.
|
|
||||||
if test -d .git; then
|
|
||||||
if [ -n "$no_links" ]; then
|
|
||||||
echo "Linux ln does not work on shared Windows file system in WSL."
|
|
||||||
if [ ! -e .git/hooks/pre-commit ]; then
|
|
||||||
echo "The pre-commit.sh file will not be copied to .git/hooks/pre-commit"
|
|
||||||
# shell scripts do not work on Windows; TODO create equivalent batch file
|
|
||||||
# cp ./pre-commit.sh .git/hooks/pre-commit || exit $?
|
|
||||||
fi
|
|
||||||
if [ ! -e .git/hooks/pre-push ]; then
|
|
||||||
echo "The pre-push.sh file will not be copied to .git/hooks/pre-commit"
|
|
||||||
# shell scripts do not work on Windows; TODO create equivalent batch file
|
|
||||||
# cp ./pre-push.sh .git/hooks/pre-push || exit $?
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
if ! test -d .git/hooks; then
|
|
||||||
mkdir .git/hooks
|
|
||||||
fi
|
|
||||||
ln -s -f ../../pre-commit.sh .git/hooks/pre-commit
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# if get an error about libtool not setup
|
# if get an error about libtool not setup
|
||||||
# " error: Libtool library used but 'LIBTOOL' is undefined
|
# " error: Libtool library used but 'LIBTOOL' is undefined
|
||||||
# The usual way to define 'LIBTOOL' is to add 'LT_INIT' "
|
# The usual way to define 'LIBTOOL' is to add 'LT_INIT' "
|
||||||
|
@ -63,10 +41,10 @@ fi
|
||||||
|
|
||||||
|
|
||||||
# If this is a source checkout then call autoreconf with error as well
|
# If this is a source checkout then call autoreconf with error as well
|
||||||
if test -d .git; then
|
if [ -e .git ]; then
|
||||||
WARNINGS="all,error"
|
export WARNINGS="all,error"
|
||||||
else
|
else
|
||||||
WARNINGS="all"
|
export WARNINGS="all"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
autoreconf --install --force --verbose
|
autoreconf --install --force --verbose
|
||||||
|
|
Loading…
Reference in New Issue