RISC OS specific patch.
8:07 +0100 @@ -62,11 +62,6 @@ const char *default_shell = ""; int batch_mode_shell = 0; -#elif defined (__riscos__) - -const char *default_shell = ""; -int batch_mode_shell = 0; - #else const char *default_shell = "/bin/sh"; Thanks Duncan Moore
make 3.82 bug with leading space on member names in library prerequisite.
Using this makefile: .PHONY: all all: lib.a( a.o) (%.o): %.o @echo $@ $< make 3.81 gives what I would expect: lib.a a.o make 3.82, with the corrections for bug #30612, gives: make: *** No rule to make target `lib.a()', needed by `all'. Stop. ___