SuperH compilation was broken, since we are adding SYSCALLS_ARCH to SRCS, and expect SRCS to only contain *.c files. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 69c9ab1..1320eb0 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,9 @@ test: MACHINE = $(shell $(CC) -dumpmachine) -SYSCALLS_ARCH = $(patsubst %.c,%.o,$(shell case "$(MACHINE)" in \ +SYSCALLS_ARCH = $(shell case "$(MACHINE)" in \ (sh*) echo syscalls/sh/*.c ;; \ - esac)) + esac) HEADERS = $(patsubst %.h,%.h,$(wildcard *.h)) $(patsubst %.h,%.h,$(wildcard syscalls/*.h)) $(patsubst %.h,%.h,$(wildcard ioctls/*.h)) @@ -46,7 +46,7 @@ SRCS = $(wildcard *.c) \ OBJS = $(patsubst %.c,%.o,$(wildcard *.c)) \ $(patsubst %.c,%.o,$(wildcard syscalls/*.c)) \ - $(SYSCALLS_ARCH) \ + $(patsubst %.c,%.o,$(SYSCALLS_ARCH)) \ $(patsubst %.c,%.o,$(wildcard ioctls/*.c)) DEPDIR= .deps -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe trinity" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html