diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·12+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·12+0000 |
commit | ed09821859e8e585c8479a3c3bf95e76d518d66f (patch) | |
tree | f7c4d452439733183c354494f7b6d69e5bf4e599 /configure.ac | |
parent | 3277c9432ab718c8b80c54b228f8d5fbf94fb033 (diff) |
* Use `atdiff' instead of `cmp' for checking test output.
* Don't use local file names in tests since they will produce different parse trees depending on the current directory.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2ba8e92384a9..872c0b6f9598 100644 --- a/configure.ac +++ b/configure.ac @@ -128,12 +128,15 @@ AM_CONDITIONAL(HAVE_ATERM, test -n "$aterm") if test -z "$aterm"; then aterm_lib='-L${top_builddir}/externals/inst-aterm/lib -lATerm' aterm_include='-I${top_builddir}/externals/inst-aterm/include' + aterm_bin='${top_builddir}/externals/inst-aterm/bin' else aterm_lib="-L$aterm/lib -lATerm" aterm_include="-I$aterm/include" + aterm_bin="$aterm/bin" fi AC_SUBST(aterm_lib) AC_SUBST(aterm_include) +AC_SUBST(aterm_bin) AC_CHECK_LIB(pthread, pthread_mutex_init) |