From 0b56a5b4cfc53b9e59ff84760ca7389cc33ebab0 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Mon, 3 Apr 2017 14:01:12 -0700 Subject: [PATCH] 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 Change-Id: I2f1b7e3edd1987efb970becc518488162a0f2de2 --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index b6370ad6e..731b889a0 100755 --- a/configure +++ b/configure @@ -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