summaryrefslogtreecommitdiffstats
path: root/debian/patches
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:38:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:08:18 +0000
commit3f1bb026853c37073e848b2352c2520e94b3c529 (patch)
tree111bf1eb573473b6827c5fd72387840d641c91fc /debian/patches
parentRefreshing send-email.patch. (diff)
downloadnetdata-3f1bb026853c37073e848b2352c2520e94b3c529.tar.xz
netdata-3f1bb026853c37073e848b2352c2520e94b3c529.zip
Removing fix-FTCBFS.patch, not neded anymore.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/upstream/0002-fix-FTCBFS.patch17
2 files changed, 0 insertions, 18 deletions
diff --git a/debian/patches/series b/debian/patches/series
index cc487ebf6..1986a3570 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,4 +3,3 @@ debian/0002-use-system-exim4.patch
debian/0003-use-python3.patch
debian/0004-use-bash.patch
debian/0005-send-email.patch
-upstream/0002-fix-FTCBFS.patch
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]
- )