From c3530054729b3d498256b2c9d2b7efb9ef7d5d25 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Tue, 17 Nov 2020 03:01:57 -0700 Subject: [PATCH] GNUmakefile: pass V value to make-config-h.sh Various "V=" settings control the output of make-config-h.sh. Therefore be sure to pass the V setting on to the script. Signed-off-by: Kyle J. McKay --- src/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GNUmakefile b/src/GNUmakefile index 1e3a69f..e9eff74 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -52,7 +52,7 @@ SOCKET-FILE: FORCE fi config.h : make-config-h.sh - ./make-config-h.sh "$(CC)" >$@ + V="$(V)" ./make-config-h.sh "$(CC)" >$@ can_user_push : can_user_push.c $(CC) -o $@ $(CFLAGS) $? -- 2.11.4.GIT