diff options
author | fche <fche> | 2005-07-12 21:31:25 +0000 |
---|---|---|
committer | fche <fche> | 2005-07-12 21:31:25 +0000 |
commit | d04cf5ff9d9bbaeb0c7af500ab1e6839d9a55e14 (patch) | |
tree | 7d3966927397848ccae4797de08241b24d5897e1 /configure.ac | |
parent | f4e12f02458ef7846f50c22887a907d93068738a (diff) | |
download | systemtap-steved-d04cf5ff9d9bbaeb0c7af500ab1e6839d9a55e14.tar.gz systemtap-steved-d04cf5ff9d9bbaeb0c7af500ab1e6839d9a55e14.tar.xz systemtap-steved-d04cf5ff9d9bbaeb0c7af500ab1e6839d9a55e14.zip |
2005-07-12 Frank Ch. Eigler <fche@redhat.com>
* buildrun.cxx (compile_pass): Make non-verbose mode quieter.
(run_pass): Spawn stpd for dirty work.
* Makefile.am: Also build stpd into libexecdir.
* configure.ac: Pass LIBEXECDIR.
* Makefile.in, configure, config.in: Regenerated.
* AUTHORS: Update.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ee75b2c6..07869557 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,15 @@ date=`date +%Y-%m-%d` AC_DEFINE_UNQUOTED(DATE, "$date", [Configuration/build date]) AC_SUBST(DATE) + +# wha?? autoconf 2.59 does not expand these in the expected way +# my_libexecdir=`eval echo $libexecdir` +# my_libexecdir="$libexecdir" + +my_libexecdir=${prefix}/libexec +AC_DEFINE_UNQUOTED(LIBEXECDIR, "$my_libexecdir", [libexecdir]) +AC_SUBST(LIBEXECDIR) + AC_CONFIG_HEADERS([config.h:config.in]) AC_CONFIG_FILES(Makefile) AC_OUTPUT |