]> sigrok.org Git - libsigrok.git/commit
Fix Ruby bindings build on Mac OS X and FreeBSD.
authorUwe Hermann <redacted>
Thu, 19 May 2016 20:46:24 +0000 (22:46 +0200)
committerUwe Hermann <redacted>
Thu, 19 May 2016 20:46:24 +0000 (22:46 +0200)
commit27272a704d4017ff4abc1c840a221a3f62d1f346
treeb88714fea3e5c853ca2981f8d3b0e7c90635b6ae
parentd12123100a0c0e6bf00c770f0aec20e5b30ed6e7
Fix Ruby bindings build on Mac OS X and FreeBSD.

Using "\s*" on BSD sed doesn't work the same way as on GNU sed, thus
yielding e.g. " 3.0.8" instead of "3.0.8" in a ./configure check, which
later prevents the Ruby bindings from being built.

Fix this by simply using exactly one space in the sed invocation, since
swig seems to always use just one space there anyway.

Tested on Mac OS X, FreeBSD, and Linux.

This closes bug #800.
configure.ac