> simon wood:
> Offensive bit in po/Makefile is:
> GMSGFMT = PATH=../src:$$PATH no
^^
the shell gets to see `path=... no', which makes it try'n'execute the program
`no'. this has to be corrected.
> <snip>
> .po.gmo:
> file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
> && rm -f $$file && $(GMSGFMT) -o $$file $<
>
> After typing 'make':
> Making all in po
> make[2]: Entering directory `/usr/src/packages/gimp-1.1.25/po'
> file=./`echo ca | sed 's,.*/,,'`.gmo \
> && rm -f $file && PATH=../src:$PATH no -o $file ca.po
^^^^^^^^^^^^^^^^^^^^ this is $GMSGFMT 's expansion.
try to locate more context info in the make file.
clemens