From: Josh Stone Date: Fri, 21 Jun 2013 17:54:40 +0000 (-0700) Subject: Fix the build for !HAVE_SELINUX after commit 56098c79 X-Git-Tag: release-2.3~121 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=145ceff0222ae919fd8cb2f310564fd728948a0e;p=systemtap.git Fix the build for !HAVE_SELINUX after commit 56098c79 --- diff --git a/stapdyn/dynutil.cxx b/stapdyn/dynutil.cxx index 9af9bfd92..654fdc304 100644 --- a/stapdyn/dynutil.cxx +++ b/stapdyn/dynutil.cxx @@ -124,6 +124,8 @@ check_dyninst_sebools(bool attach) warnx("SELinux boolean 'allow_execmod' is disabled, which blocks Dyninst"); return false; } +#else + (void)attach; // unused #endif return true;