[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/3] quotes in configure.ac
From: |
William Pursell |
Subject: |
[PATCH 1/3] quotes in configure.ac |
Date: |
Sat, 22 Nov 2008 13:20:56 +0000 |
User-agent: |
Thunderbird 2.0.0.18 (Macintosh/20081105) |
Here's a few patches, mostly to doc/automake.texi
'make info pdf ps' runs clean with all 3 applied.
This first adds quoting in configure.ac.
The 3rd is obvious typos/grammaros (and a
ChangeLog entry), and the 2nd is some edits of
questionable quality. In particular, the 2nd hunk
regarding AC_REQUIRE_AUX_FILE. I found the sentence
somewhat oddly constructed on first reading, but
in retrospect I now like the original wording best.
commit 1b8fb7d8cbfeedc7f6c41ac2ce30d561cf8acd0c
Author: William Pursell <address@hidden>
Date: Sat Nov 22 12:17:58 2008 +0000
Quote APIVERSION in configure.ac.
diff --git a/configure.ac b/configure.ac
index 664a260..3ede853 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,7 +38,7 @@ AM_INIT_AUTOMAKE([1.10a dist-bzip2 filename-length-max=99
color-tests])
# * Prereleases on the trunk are all incompatible -- 1.5b and 1.5c
# aren't the same.
APIVERSION=`echo "$VERSION" | sed -e
's/^\([[0-9]]*\.[[0-9]]*[[a-z]]*\).*$/\1/'`
-AC_SUBST(APIVERSION)
+AC_SUBST([APIVERSION])
# A versioned directory, defined here for convenience.
AC_SUBST([pkgvdatadir], ["\${datadir}/$PACKAGE-$APIVERSION"])
--
William Pursell
commit 1b8fb7d8cbfeedc7f6c41ac2ce30d561cf8acd0c
Author: William Pursell <address@hidden>
Date: Sat Nov 22 12:17:58 2008 +0000
Quote APIVERSION in configure.ac.
diff --git a/configure.ac b/configure.ac
index 664a260..3ede853 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,7 +38,7 @@ AM_INIT_AUTOMAKE([1.10a dist-bzip2 filename-length-max=99
color-tests])
# * Prereleases on the trunk are all incompatible -- 1.5b and 1.5c
# aren't the same.
APIVERSION=`echo "$VERSION" | sed -e
's/^\([[0-9]]*\.[[0-9]]*[[a-z]]*\).*$/\1/'`
-AC_SUBST(APIVERSION)
+AC_SUBST([APIVERSION])
# A versioned directory, defined here for convenience.
AC_SUBST([pkgvdatadir], ["\${datadir}/$PACKAGE-$APIVERSION"])
- [PATCH 1/3] quotes in configure.ac,
William Pursell <=