configure: add output indicating creation of CONFIG.local

This is primarily to make it clear to the user that configure
was successful and can now proceed to "make".

Signed-off-by: Jim Harris <james.r.harris@intel.com>
Change-Id: I2f1b7e3edd1987efb970becc518488162a0f2de2
This commit is contained in:
Jim Harris 2017-04-03 14:01:12 -07:00
parent 9dd998cdc0
commit 0b56a5b4cf

5
configure vendored
View File

@ -126,6 +126,8 @@ if [ "$CONFIG_FIO_PLUGIN" = "y" ]; then
fi
fi
echo -n "Creating CONFIG.local..."
# Write the configuration file
rm -f CONFIG.local
if [ -n "$CONFIG_DEBUG" ]; then
@ -162,6 +164,7 @@ if [ -n "$CONFIG_RBD" ]; then
echo "CONFIG_RBD?=$CONFIG_RBD" >> CONFIG.local
fi
echo "Type make to build."
echo "done."
echo "Type 'make' to build."
exit 0