From 2fbcbe64e946f9ec37e764d8c8933fda521f7db4 Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Wed, 12 Apr 2017 13:20:56 -0700 Subject: [PATCH] build: Generate config.h in configure script This change allows the user to only build specific directories. For instance: ./configure ... cd lib make Change-Id: I067701befe6bcb5ede8ccdeb561d92db85470b50 Signed-off-by: Ben Walker --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 910eeb247..c593fbcc7 100755 --- a/configure +++ b/configure @@ -164,6 +164,8 @@ if [ -n "$CONFIG_RBD" ]; then echo "CONFIG_RBD?=$CONFIG_RBD" >> CONFIG.local fi +python scripts/genconfig.py > config.h + echo "done." echo "Type 'make' to build."