-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve README #2814
Improve README #2814
Conversation
Improve README to be more structural and more readable.
```console | ||
git submodule update --init # if building from git to get oniguruma | ||
autoreconf -i # if building from git | ||
./configure --with-oniguruma=builtin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I always feel --with-oniguruma=builtin
in instruction is verbose because it detects automatically but do we still need this to prevent the fallback to pre-installed libonig?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, the --with-oniguruma=builtin
is in the default ./configure
flags: . Perhaps let's make the help more clear builtin
is the default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this is going to be more reliable for users, so it's probably best to leave it. Users with a slight clue will think about this and maybe exclude this option?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I understand.
LGTM. |
Improve README to be more structural and more readable. A reander is available here.