[PATCH 1/2] perf: remove dep on -lelf during libaudit check

From: Don Zickus
Date: Tue Nov 30 2010 - 17:12:43 EST


If your machine does not have the elfutils-devel installed on it,
then the check of libaudit will fail even though the machine has
the audit-libs-devel package installed.

The check for -lelf is unneeded.

Signed-off-by: Don Zickus <dzickus@xxxxxxxxxx>
---
tools/perf/Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index b3e6bc6..78ca0b5 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -518,7 +518,7 @@ PERFLIBS = $(LIB_FILE)
-include config.mak

ifndef NO_AUDIT
-FLAGS_AUDIT=$(ALL_CFLAGS) -laudit $(ALL_LDFLAGS) $(EXTLIBS)
+FLAGS_AUDIT=$(ALL_CFLAGS) -laudit $(ALL_LDFLAGS)
ifneq ($(call try-cc,$(SOURCE_AUDIT),$(FLAGS_AUDIT)),y)
msg := $(error No libaudit found. Please install audit-libs-dev/audit-libs-devel);
NO_AUDIT := 1
--
1.7.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/