From f86f3f7af8ff8368908313399d47aa0b1f091443 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 18 Oct 2018 19:26:29 +0200 Subject: [PATCH] build: Use [] notation for configure option name --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index f6505da9..196b38ae 100644 --- a/configure.ac +++ b/configure.ac @@ -155,27 +155,27 @@ if (test "${enable_systemd_service}" != "no" && test -z "${path_systemd_unitdir} fi AC_SUBST(SYSTEMD_UNITDIR, [${path_systemd_unitdir}]) -AC_ARG_ENABLE(sim_hardcoded, AC_HELP_STRING([--enable-sim-hardcoded], +AC_ARG_ENABLE([sim_hardcoded], AC_HELP_STRING([--enable-sim-hardcoded], [enable hard coded SIM keys]), [enable_sim_hardcoded=${enableval}]) AM_CONDITIONAL(SIM_HARDCODED, test "${enable_sim_hardcoded}" = "yes") -AC_ARG_ENABLE(ofono, AC_HELP_STRING([--enable-ofono], +AC_ARG_ENABLE([ofono], AC_HELP_STRING([--enable-ofono], [enable oFono SIM authentication support]), [enable_ofono=${enableval}]) AM_CONDITIONAL(OFONO, test "${enable_ofono}" = "yes") -AC_ARG_ENABLE(wired, AC_HELP_STRING([--enable-wired], +AC_ARG_ENABLE([wired], AC_HELP_STRING([--enable-wired], [enable Ethernet authentication support]), [enable_wired=${enableval}]) AM_CONDITIONAL(WIRED, test "${enable_wired}" = "yes") -AC_ARG_ENABLE(hwsim, AC_HELP_STRING([--enable-hwsim], +AC_ARG_ENABLE([hwsim], AC_HELP_STRING([--enable-hwsim], [enable Wireless simulation utility]), [enable_hwsim=${enableval}]) AM_CONDITIONAL(HWSIM, test "${enable_hwsim}" = "yes") -AC_ARG_ENABLE(tools, AC_HELP_STRING([--enable-tools], +AC_ARG_ENABLE([tools], AC_HELP_STRING([--enable-tools], [enable internal testing utilities]), [enable_tools=${enableval}]) AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")