Re: [sqlite] [patch] configure.ac: wrong braces in appending OPT_FEATURE_FLAGS

2017-06-02 Thread Yuriy M. Kaminskiy
Richard Hipp writes: > On 6/2/17, Yuriy M. Kaminskiy wrote: >> While running configure, I noticed some noise about `OPT_FEATURE_FLAGS: >> command not found`. > > I attempted to fix this problem in check-in > https://www.sqlite.org/src/timeline?c=43ce3bd3 - Did I miss something? Sorry for noise,

Re: [sqlite] [patch] configure.ac: wrong braces in appending OPT_FEATURE_FLAGS

2017-06-02 Thread Richard Hipp
On 6/2/17, Yuriy M. Kaminskiy wrote: > While running configure, I noticed some noise about `OPT_FEATURE_FLAGS: > command not found`. I attempted to fix this problem in check-in https://www.sqlite.org/src/timeline?c=43ce3bd3 - Did I miss something? -- D. Richard Hipp d...@sqlite.org _

[sqlite] [patch] configure.ac: wrong braces in appending OPT_FEATURE_FLAGS

2017-06-02 Thread Yuriy M. Kaminskiy
While running configure, I noticed some noise about `OPT_FEATURE_FLAGS: command not found`. And indeed, it uses wrong braces around OPT_FEATURE_FLAGS in code that converts --enable-{fts4,rtree,etc} into defines. In shell (configure.ac is shell code!), ${foo} expands variable foo, but $(foo) runs *c