diff -Naur check_mk-1.2.0p3.orig/setup.sh check_mk-1.2.0p3/setup.sh --- check_mk-1.2.0p3.orig/setup.sh 2012-09-27 10:11:30.000000000 +0200 +++ check_mk-1.2.0p3/setup.sh 2012-12-21 12:27:57.066449527 +0100 @@ -519,6 +519,8 @@ mkdir -p $D tar xvzf $SRCDIR/livestatus.tar.gz -C $D pushd $D + # remove strip from Makefile.in + sed -i -e 's/^STRIP = @STRIP@$/STRIP = \/bin\/true/' Makefile.in ./configure --libdir=$libdir --bindir=$bindir && make clean && cat < src/livestatus.h && @@ -528,7 +530,8 @@ #endif // livestatus_h EOF make -j 8 2>&1 && - strip src/livestatus.o && + # remove strip to get meaningful backtraces + #strip src/livestatus.o && mkdir -p $DESTDIR$libdir && install -m 755 src/livecheck src/livestatus.o $DESTDIR$libdir && mkdir -p $DESTDIR$bindir && @@ -817,7 +820,8 @@ sed -i "s@$web_dir@$web_dir/htdocs@g" $d fi done && - create_sudo_configuration && + # disabled modification of /etc/sudoers because of ebuild access violation + #create_sudo_configuration && if [ -z "$YES" ] ; then echo -e "Installation completed successfully.\nPlease restart Nagios and Apache in order to update/active check_mk's web pages." echo