-
Notifications
You must be signed in to change notification settings - Fork 321
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
Cosmetic fixes in configure.ac #592
Cosmetic fixes in configure.ac #592
Conversation
4cc92c5
to
77d8b77
Compare
* Reorganize order of operations in configure.ac in a single place. * Consistent identation throughout the file. * Minor changes in configure.ac documentation.
77d8b77
to
1bef82b
Compare
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.
the fallback if neither ppp nor pppd are found on FreeBSD does not work anymore. However, this is already broken on the master branch, so it's an independent issue, which is easy to fix test "x$uname" = ...
-> test "x$(uname)" = ...
Also, resolvconf generates additional output at configure time because output redirection does not work the same way as on linux &>/dev/null
-> >/dev/null 2>/dev/null
I'll open another pull request for these FreeBSD issues.
@mrbaseman OK, we have few changes in |
OK for merging them #592, #593, #595. Could you do that and then test on FreeBSD again? By the way, could these fixes be of interest on macOS too? Homebrew checks for 1.13.1 have not completed yet so I don't know if there are build issues: |
hmm... I have to rebase the other ones first. This time I have created new branches that are based on the other pull requests (in the hope that I don't have to rebase, but it didn't work). The macOS issue was the same as on Fedora (as you have already mentioned in the Homebrew repo), but I thought it makes sense to repeat this statement here. While writing this answer I have merged the other ones in the meantime, and I'll re-test on FreeBSD now (a colleague of mine was on-site this morning and has powered up the machine on which I have a couple of VMs, including the FreeBSD testing installation). |
Depends on #591.