-
Notifications
You must be signed in to change notification settings - Fork 50
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
build: Exit on error in autogen.sh plus other cleanup #1163
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1163 +/- ##
==========================================
- Coverage 77.75% 77.75% -0.01%
==========================================
Files 158 158
Lines 29265 29266 +1
==========================================
Hits 22756 22756
- Misses 6509 6510 +1
|
Thanks for the cleanup! This needs to be rebased. While you're at it, any reason not to just do |
Make autogen.sh exit after any of the commands fail. Remove the "-I config" option from the autoreconf command which appears to be redundant with either AC_CONFIG_AUX_DIR([config]) or AC_CONFIG_MACRO_DIR([config]) in the configure.ac file. Stop removing autom4te.cache. We can't remember why we did that. Resolves #1162
If we use -e, we could also use -x and not need any echo statements. But I don't really care either way. |
Bonked Travis on the noggin. One build hung after python tests (output stalled so Travis killed the build), so I restarted that build. |
This seems fine to merge now without changes. It fixes the issues in question -- if someone wants to enhance the script to use -x and -e in the future there's not reason not to submit another PR |
Make autogen.sh exit after any of the commands fail.
Remove the "-I config" option from the autoreconf command
which appears to be redundant with either AC_CONFIG_AUX_DIR([config])
or AC_CONFIG_MACRO_DIR([config]) in the configure.ac file.
Stop removing autom4te.cache. We can't remember why we did that.
Resolves #1162