summaryrefslogtreecommitdiffstats
path: root/debian/patches/upstream/0002-fix-FTCBFS.patch
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/patches/upstream/0002-fix-FTCBFS.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/upstream/0002-fix-FTCBFS.patch b/debian/patches/upstream/0002-fix-FTCBFS.patch
deleted file mode 100644
index 10cf18f67..000000000
--- a/debian/patches/upstream/0002-fix-FTCBFS.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Author: Helmut Grohne <helmut@subdivi.de>
-Description: Fixes FTCBFS by not abusing AC_CHECK_FILE (Closes: #982523).
-
-diff -Naurp netdata.orig/configure.ac netdata/configure.ac
---- netdata.orig/configure.ac
-+++ netdata/configure.ac
-@@ -1025,8 +1025,8 @@ if test "${build_target}" = "linux" -a "
- [#include <linux/bpf.h>]
- )
-
-- AC_CHECK_FILE(
-- externaldeps/libbpf/libbpf.a,
-+ AS_IF(
-+ [test -e externaldeps/libbpf/libbpf.a],
- [have_libbpf=yes],
- [have_libbpf=no]
- )