summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorDaniel Elstner <daniel.kitta@gmail.com>2009-08-21 22:44:19 +0200
committerDaniel Elstner <daniel.kitta@gmail.com>2009-08-21 22:44:19 +0200
commitd91546f0a71c2cbf9c09996b7df6882c0a97fc0b (patch)
treed50834837615f1fd441105170ea8478989978a50 /util
parent8ef4ec8560a887fdea8d9bc434d3d3db8088c77b (diff)
downloadmm-common-d91546f0a71c2cbf9c09996b7df6882c0a97fc0b.tar.gz
Add missing backslash escape
* util/mm-common-prepare.in: Insert a missing backslash to escape another backslash within a double-quoted sed script. Apparently it accidentally worked even without proper escaping.
Diffstat (limited to 'util')
-rw-r--r--util/mm-common-prepare.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mm-common-prepare.in b/util/mm-common-prepare.in
index 1346873..e796747 100644
--- a/util/mm-common-prepare.in
+++ b/util/mm-common-prepare.in
@@ -79,7 +79,7 @@ test -f "$acfile" || {
# Extract the directory macro arguments from configure.ac
s=' ' # tab+space
auxdir=`sed -n "s/^[$s]*AC_CONFIG_AUX_DIR([[$s]*\\([^])\$,$s]*\\).*/\\1/p" "$acfile"`
-doctooldir=`sed -n "s/^[$s]*MM_CONFIG_DOCTOOL_DIR([[$s]*\\([^])\$,$s]*\\).*/\1/p" "$acfile"`
+doctooldir=`sed -n "s/^[$s]*MM_CONFIG_DOCTOOL_DIR([[$s]*\\([^])\$,$s]*\\).*/\\1/p" "$acfile"`
auxdir="$srcdir${auxdir:+/}$auxdir"
echo "$progname: putting auxiliary files in '$auxdir'."