From e93d422b9e929aa19c8c9148718bff3cdfa7ccaf Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 8 Feb 2008 08:34:52 -0700 Subject: [PATCH] Fix texinfo typos in previous patch. * doc/autoconf.texi (Site Defaults): s/[{}]/@&/g. Reported by Ralf Wildenhues. Signed-off-by: Eric Blake --- ChangeLog | 4 ++++ doc/autoconf.texi | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a003d47c..4ee1cd46 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-02-08 Eric Blake + Fix texinfo typos in previous patch. + * doc/autoconf.texi (Site Defaults): s/[{}]/@&/g. + Reported by Ralf Wildenhues. + Describe a config.site that can be used for FHS compliance. * doc/autoconf.texi (Site Defaults): Fix typo. Add new example for FHS. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index b0668a8a..07c66991 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -17865,8 +17865,8 @@ file (if @code{CONFIG_SITE} is not set to a different file). # Change some defaults. test "$prefix" = NONE && prefix=/usr/share/local/gnu test "$exec_prefix" = NONE && exec_prefix=/usr/local/gnu -test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var -test "$localstatedir" = '${prefix}/var' && localstatedir=/var +test "$sharedstatedir" = '$@{prefix@}/com' && sharedstatedir=/var +test "$localstatedir" = '$@{prefix@}/var' && localstatedir=/var # Give Autoconf 2.x generated configure scripts a shared default # cache file for feature test results, architecture-specific. @@ -17891,9 +17891,9 @@ the locations recommended by @acronym{FHS}. # /usr/local/config.site for FHS defaults when installing below /usr, # and the respective settings were not changed on the command line. if test "$prefix" = /usr; then - test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc - test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var - test "$localstatedir" = '${prefix}/var' && localstatedir=/var + test "$sysconfdir" = '$@{prefix@}/etc' && sysconfdir=/etc + test "$sharedstatedir" = '$@{prefix@}/com' && sharedstatedir=/var + test "$localstatedir" = '$@{prefix@}/var' && localstatedir=/var fi @end example -- 2.47.2