Skip to content
Snippets Groups Projects
Commit 02c3b71b authored by Brad King's avatar Brad King
Browse files

BUG: Do not have variable and function of the same name. Old shells do not likeit.

parent f5a5b1ff
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ EOF
}
# Display CMake bootstrap usage
cmake_version()
cmake_version_display()
{
(
# Get CMake version
......@@ -482,7 +482,7 @@ for a in "$@"; do
cmake_usage
fi
if echo $a | grep "^--version" > /dev/null 2> /dev/null; then
cmake_version
cmake_version_display
exit 2
fi
if echo $a | grep "^--verbose" > /dev/null 2> /dev/null; then
......@@ -505,7 +505,7 @@ fi
echo "---------------------------------------------"
# Get CMake version
echo "`cmake_version`"
echo "`cmake_version_display`"
# Check for in-source build
cmake_in_source_build=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment