summaryrefslogtreecommitdiff
path: root/toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2014-08-21 22:11:35 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2014-08-21 22:11:35 +0200
commit714696cfac2e9b6c3a010275dfb9ee8b7f250fd7 (patch)
tree19addedd770405d3f9f6c7a8ef9fbb2d93007e05 /toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch
parentec71cc8829ad871ce3587d04d71827f769e5d265 (diff)
fix m68k issues in uClibc git version
Diffstat (limited to 'toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch')
-rw-r--r--toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch b/toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch
new file mode 100644
index 000000000..b21cffbd3
--- /dev/null
+++ b/toolchain/uclibc/patches/0.9.34-git/0007-disable-test-for-non-MMU-systems.patch
@@ -0,0 +1,30 @@
+From 325f778f3bbb1b13c436e7754dd22097d31c04d2 Mon Sep 17 00:00:00 2001
+From: Waldemar Brodkorb <wbx@uclibc-ng.org>
+Date: Thu, 21 Aug 2014 22:02:26 +0200
+Subject: [PATCH 7/9] disable test for non-MMU systems
+
+This test fails for non-MMU systems, because it uses fork()
+
+Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
+---
+ test/Makefile | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/test/Makefile b/test/Makefile
+index 787c530..d51bb62 100644
+--- a/test/Makefile
++++ b/test/Makefile
+@@ -42,6 +42,10 @@ endif
+ ifeq ($(HAS_NO_THREADS),y)
+ DIRS := $(filter-out pthread,$(DIRS))
+ endif
++# librt test needs fork()
++ifneq ($(ARCH_USE_MMU),y)
++ DIRS := $(filter-out librt,$(DIRS))
++endif
+
+ test check all: run
+
+--
+1.8.5.2 (Apple Git-48)
+