From: Bruno Haible Date: Fri, 26 May 2023 14:03:57 +0000 (+0200) Subject: build: Improve autoconf quoting. X-Git-Tag: v0.22~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1382961c04dd85acfbaea1a558e15293e3d3f0b5;p=thirdparty%2Fgettext.git build: Improve autoconf quoting. * gettext-runtime/intl/configure.ac: Fix quoting of AS_HELP_STRING argument. * gettext-tools/configure.ac: Likewise. --- diff --git a/gettext-runtime/intl/configure.ac b/gettext-runtime/intl/configure.ac index aeed10f11..8da339016 100644 --- a/gettext-runtime/intl/configure.ac +++ b/gettext-runtime/intl/configure.ac @@ -81,7 +81,7 @@ AM_CONDITIONAL([WINDOWS_NATIVE], [test $is_windows_native = yes]) dnl Support building libintl.a with -fPIC (needed by GCC). dnl AC_ARG_ENABLE([host-shared], - [AS_HELP_STRING([--enable-host-shared], [special hack for GCC])], + [AS_HELP_STRING([[--enable-host-shared]], [special hack for GCC])], [PICFLAG='-fPIC'], [PICFLAG=]) AC_SUBST([PICFLAG]) diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index feb1a0926..4d9bc8e52 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -134,7 +134,7 @@ AM_GNU_GETTEXT([use-libtool], [need-ngettext], [\${top_builddir}/../gettext-runt dnl This option allows to build gettext-tools without (re)building libtextstyle. AC_ARG_WITH([installed-libtextstyle], - [AS_HELP_STRING([--with-installed-libtextstyle], + [AS_HELP_STRING([[--with-installed-libtextstyle]], [Use an already installed libtextstyle.])], [gt_use_installed_libtextstyle=$withval], [gt_use_installed_libtextstyle=no]) @@ -150,7 +150,7 @@ AM_CONDITIONAL([USE_INSTALLED_LIBTEXTSTYLE], dnl This option allows to build gettext-tools without (re)building GNU.Gettext.dll. AC_ARG_WITH([installed-csharp-dll], - [AS_HELP_STRING([--with-installed-csharp-dll], + [AS_HELP_STRING([[--with-installed-csharp-dll]], [Use an already installed C# DLL.])], [gt_use_installed_csharp_dll=$withval], [gt_use_installed_csharp_dll=no])