From 847bf4c0c184d0cd920ff31869a4cfb148cf967a Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 6 May 2012 21:30:25 +0200 Subject: [PATCH] build-sys: configure option --enable-skill did not work The commit 1462c4e581caf22b2e7fe155691dfcddcb51b3f7 had error in variable name. Signed-off-by: Sami Kerola --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e3f701bc..822a23d8 100644 --- a/configure.ac +++ b/configure.ac @@ -185,7 +185,7 @@ AC_ARG_ENABLE([skill], AS_HELP_STRING([--enable-skill], [build skill and snice]), [], enable_skill=no ) -AM_CONDITIONAL(BUILD_SKILL, test "x$build_skill" = xyes) +AM_CONDITIONAL(BUILD_SKILL, test "x$enable_skill" = xyes) AC_ARG_ENABLE([examples], AS_HELP_STRING([--enable-examples], [add example files to installation]),