From: Eric Blake Date: Fri, 8 Feb 2008 15:34:52 +0000 (-0700) Subject: Fix texinfo typos in previous patch. X-Git-Tag: v2.62~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e93d422b9e929aa19c8c9148718bff3cdfa7ccaf;p=thirdparty%2Fautoconf.git Fix texinfo typos in previous patch. * doc/autoconf.texi (Site Defaults): s/[{}]/@&/g. Reported by Ralf Wildenhues. Signed-off-by: Eric Blake --- 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