Open
Conversation
When running autoreconf (GNU Autoconf) 2.69, I have to make these changes to get it to run. I still get the following warnings, and the tests don't run right, but the binaries appear healthy. ``` libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. configure.ac:7: installing './config.guess' configure.ac:7: installing './config.sub' Makefile.am:32: warning: shell uname -s: non-POSIX variable name Makefile.am:32: (probably a GNU make extension) Makefile.am:32: warning: shell uname -m: non-POSIX variable name Makefile.am:32: (probably a GNU make extension) ``` Thank you for the awesome code!
Owner
|
Hi matsen; thanks for the patch - I am having problems compiling with it though. In particular, when do ...
make[1]: Leaving directory `/home/tjunier/projects/newick_utils/src'
Making distclean in tests
make[1]: Entering directory `/home/tjunier/projects/newick_utils/tests'
Makefile:999: ../src/.deps/canvas.Po: No such file or directory
Makefile:1000: ../src/.deps/concat.Po: No such file or directory
Makefile:1001: ../src/.deps/enode.Po: No such file or directory
...Beats me. I don't recall seeing anything like this before. I'm also using autoconf 2.69. Thomas |
Author
|
OK, well, no worries then. I know zero about autoconf. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When running autoreconf (GNU Autoconf) 2.69, I have to make these changes to get it to run.
I still get the following warnings, and the tests don't run right, but the binaries appear healthy.
Thank you for the awesome code!