From 7f4afa0214d93574b3b3609086b03f0c94b9c5ea Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Sun, 19 Mar 2017 12:40:43 -0500 Subject: man: Put valid make syntax in the example Use backquotes for substitution in the Makefile example as using the $() form of command substitution would actually use make's variable substitution and fail. Thanks to joerg.strebel@gmail.com for the report. https://bugs.freedesktop.org/show_bug.cgi?id=98011 --- pkg-config.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg-config.1 b/pkg-config.1 index a06904a..241da03 100644 --- a/pkg-config.1 +++ b/pkg-config.1 @@ -32,7 +32,7 @@ scenario in a Makefile: .PP .nf program: program.c - cc program.c $(pkg-config --cflags --libs gnomeui) + cc program.c `pkg-config --cflags --libs gnomeui` .fi .PP .I pkg-config -- cgit v1.2.1