I'm trying to upgrade my SH4 cpu packages. 'make''s version was 3.82. If I want to upgrade to 'make' 4.0, it require to build 'guile'. When I build 'guile'. It shows
$ cd guile-2.0.11
$ ./configure --prefix=/usr --disable-static --disable-error-on-warning # OK
$ make
make: -n: Command not found
GNUmakefile:123: *** invalid syntax in conditional. Stop.
The GNUmakefile line 123 is
123 ifneq ($(word 2, $(MAKECMDGOALS)), )
124 ifneq ($(filter $(ALL_RECURSIVE_TARGETS), $(MAKECMDGOALS)), )
125 .NOTPARALLEL:
126 endif
127 endif
I'm wonder am I falling into 'egg is born from chicken, chicken is born from egg' problem.