bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU Make app and right text output with echo


From: Eli Zaretskii
Subject: Re: GNU Make app and right text output with echo
Date: Sat, 19 Feb 2022 17:40:31 +0200

> From: <filip-vps@seznam.cz>
> 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]