From 5cef41e120edc9f33ce46bbce1093076aea5a6d2 Mon Sep 17 00:00:00 2001 From: LaMont Jones Date: Sat, 25 Aug 2007 21:12:54 -0600 Subject: [PATCH] taskset: Don't deliver taskset on m68k. m68k doesn't have SYS_sched_getaffinity and friends, so taskset not only makes no sense, it fails to build. Signed-off-by: LaMont Jones --- schedutils/Makefile.am | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/schedutils/Makefile.am b/schedutils/Makefile.am index 03e3080b..271e8bf6 100644 --- a/schedutils/Makefile.am +++ b/schedutils/Makefile.am @@ -2,7 +2,12 @@ include $(top_srcdir)/config/include-Makefile.am if BUILD_SCHEDUTILS -usrbinexec_PROGRAMS = chrt ionice taskset -man_MANS = chrt.1 ionice.1 taskset.1 +usrbinexec_PROGRAMS = chrt ionice +man_MANS = chrt.1 ionice.1 + +if !ARCH_M68K +usrbinexec_PROGRAMS += taskset +man_MANS += taskset.1 +endif endif -- 2.39.5