Skip to content
Snippets Groups Projects
Commit 8db01187 authored by Oliver Sander's avatar Oliver Sander
Browse files

Improve wording

parent 12acd9db
Branches
Tags
No related merge requests found
......@@ -206,12 +206,12 @@ while [ "$DATACORRECT" != "y" -a "$DATACORRECT" != "Y" ]; do
while [ "$DEPOK" != 0 ]; do
echo "2) Which modules should this module depend on?"
echo " Following modules are found:"
echo " The following modules have been found:"
echo " $MODULES"
# for i in $MODULES; do echo -n " $i"; done
# echo ""
while [ -z "$DEPENDENCIES" ]; do
read -p " Enter space separated list: " DEPENDENCIES
read -p " Enter space-separated list: " DEPENDENCIES
done
set +e
modulesexist "$DEPENDENCIES" "$MODULES"
......@@ -229,8 +229,8 @@ while [ "$DATACORRECT" != "y" -a "$DATACORRECT" != "Y" ]; do
read -p "4) Maintainer's email address? " MAINTAINER
done
while [ "$ENABLE_ALL" != "y" -a "$ENABLE_ALL" != "Y" -a "$ENABLE_ALL" != "n" -a "$ENABLE_ALL" != "N" ]; do
echo "5) Enable all available packages? (Choose 'y' if you don't understand the question, but see warning below.)"
read -p " WARNING: If you enable this option, your module will require at least CMake 2.8.12 to build. You can check your version with 'cmake --version' [y/N]" ENABLE_ALL
echo "5) Enable all available packages? Choose 'y' if you don't understand the question, but note that you need"
read -p " at least CMake 2.8.12 for this. You can check your version with 'cmake --version' [y/N]" ENABLE_ALL
done
# canonicalize contents of ENABLE_ALL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment