544fcc772f
ply is a light-weight dynamic tracer for Linux. By means of using the BPF it can attach probes to the linux kernel (e. g. kprobes). It's a small alternative to LLVM based tracers for embedded systems. Project page: https://github.com/wkz/ply/releases Documentation can be found here: https://wkz.github.io/ply/ Tested with beaglebone_defconfig (uClibc-ng as well as glibc) Signed-off-by: Andreas Klinger <ak@it-klinger.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
822 B
Diff
30 lines
822 B
Diff
From 684bae6043fa2242a5c6551c3f260c9db0cf7dc8 Mon Sep 17 00:00:00 2001
|
|
From: Andreas Klinger <ak@it-klinger.de>
|
|
Date: Mon, 4 Jan 2021 08:40:50 +0100
|
|
Subject: [PATCH] configure.ac: fix error with version string
|
|
|
|
When autoreconfiguring there's an error: "configure.ac:6: error: AC_INIT
|
|
should be called with package and version arguments".
|
|
|
|
Put version string in square brackets to satisfy autoconfigure.
|
|
|
|
Signed-off-by: Andreas Klinger <ak@it-klinger.de>
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 65387d6..7a0054e 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1,5 +1,5 @@
|
|
AC_PREREQ(2.61)
|
|
-AC_INIT(ply, m4_esyscmd_s(git describe --always --dirty),
|
|
+AC_INIT(ply, [2.1.1],
|
|
https://github.com/wkz/ply/issues)
|
|
|
|
AC_GNU_SOURCE
|
|
--
|
|
2.20.1
|
|
|