diff options
author | fche <fche> | 2007-03-17 17:43:41 +0000 |
---|---|---|
committer | fche <fche> | 2007-03-17 17:43:41 +0000 |
commit | 3d48c9833362aabc5faacb1f237e9914b794a247 (patch) | |
tree | 1fde2fb1ea662b687dd5728e2cc10d58b8f431bd /configure.ac | |
parent | 8d0272dae3e7baf3bb77bd33ea9cabd7ea741f87 (diff) | |
download | systemtap-steved-3d48c9833362aabc5faacb1f237e9914b794a247.tar.gz systemtap-steved-3d48c9833362aabc5faacb1f237e9914b794a247.tar.xz systemtap-steved-3d48c9833362aabc5faacb1f237e9914b794a247.zip |
2007-03-17 Frank Ch. Eigler <fche@elastic.org>
* configure.ac: Tweak missing elfutils error message.
* configure: Regenerated.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 62599bef..a2eccc7b 100644 --- a/configure.ac +++ b/configure.ac @@ -104,9 +104,9 @@ if test $build_elfutils = no; then # Need libdwfl-capable recent elfutils from Fedora save_LIBS="$LIBS" AC_CHECK_LIB(dw, dwfl_module_getsym,,[ - AC_MSG_ERROR([systemtap requires elfutils 0.123+])]) + AC_MSG_ERROR([missing elfutils development headers/libraries (dw 0.123+)])]) AC_CHECK_LIB(ebl, ebl_openbackend,,[ - AC_MSG_ERROR([systemtap requires elfutils 0.123+])]) + AC_MSG_ERROR([missing elfutils development headers/libraries (ebl 0.123+)])]) stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" else |