On Sat, 2022-02-19 at 17:40 +0200, Eli Zaretskii wrote:
> > From:
> > Date: Sat, 19 Feb 2022 14:25:47 +0100 (CET)
> >
> > Problem is wisible on follow example of file Makefile.win:
> >
> > all :
> > echo $(pkg-config --libs glib-2.0)
>
> This is wrong, you want
>
> all :
> echo
> From:
> Date: Sat, 19 Feb 2022 14:25:47 +0100 (CET)
>
> Problem is wisible on follow example of file Makefile.win:
>
> all :
> echo $(pkg-config --libs glib-2.0)
This is wrong, you want
all :
echo $(shell pkg-config --libs glib-2.0)
The 'shell' function is missing.