lloyd / yajl

A fast streaming JSON parsing library in C.
http://lloyd.github.com/yajl
ISC License
2.15k stars 435 forks source link

--prefix option not available #186

Open bonfilsd opened 8 years ago

bonfilsd commented 8 years ago

Hi all,

just to report a bug for '--prefix' option. This option is not available for configure file.

Possible hack (line 27) -if [ "$1" = "-p" ]; then +if [ "$1" = "-p" ] || [ "$1" = "--prefix" ]; then

Maybe use for fix for this file.

Bye.