From: Sami Kerola Date: Sun, 6 May 2012 19:30:25 +0000 (+0200) Subject: build-sys: configure option --enable-skill did not work X-Git-Tag: v3.3.3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=847bf4c0c184d0cd920ff31869a4cfb148cf967a;p=procps-ng build-sys: configure option --enable-skill did not work The commit 1462c4e581caf22b2e7fe155691dfcddcb51b3f7 had error in variable name. Signed-off-by: Sami Kerola --- 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]),