aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-17 15:11:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-17 15:11:24 +0200
commited089eb92281efc8960d610ed2aea827a01ad14a (patch)
tree06f6a86713df58bd70d0c1bdd54eb46fef0792f7
parent7fd072414580125559f20b09951f7ea8c7b3946e (diff)
Fix over-quoting in m4_split
-rw-r--r--build/meta/common.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/build/meta/common.m4 b/build/meta/common.m4
index 22433ec..4833bf4 100644
--- a/build/meta/common.m4
+++ b/build/meta/common.m4
@@ -30,7 +30,7 @@ m4_define([m4_normalize], [m4_strip([$1])])
m4_define([m4_split],
[m4_ifelse([$1], [], [],
- [$2], [ ], [m4_ifelse(m4_index([$1], [ ]), [-1], [[[$1]]],
+ [$2], [ ], [m4_ifelse(m4_index([$1], [ ]), [-1], [[$1]],
[_$0([$1], [$2], [, ])])],
[$2], [], [_$0([$1], [[ ]+], [, ])],
[_$0([$1], [$2], [, ])])])