From 6f7879a7364a46ebadfc43a899ebd5c59ed66351 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Sat, 15 Oct 2016 14:54:45 +0200 Subject: [PATCH] bindfs: fix aarch64 build --- srcpkgs/bindfs/patches/aarch64-no-getdents.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 srcpkgs/bindfs/patches/aarch64-no-getdents.patch diff --git a/srcpkgs/bindfs/patches/aarch64-no-getdents.patch b/srcpkgs/bindfs/patches/aarch64-no-getdents.patch new file mode 100644 index 0000000000..4ada82bea5 --- /dev/null +++ b/srcpkgs/bindfs/patches/aarch64-no-getdents.patch @@ -0,0 +1,11 @@ +--- tests/test_dir_rewind.c.orig 2016-10-15 14:51:53.979721035 +0200 ++++ tests/test_dir_rewind.c 2016-10-15 14:52:10.176721870 +0200 +@@ -3,7 +3,7 @@ + // + // https://github.com/mpartel/bindfs/issues/41 + +-#ifdef __linux__ ++#if defined(__linux__) && !defined(__aarch64__) + + #define _GNU_SOURCE + #include