From 161ea7485851f877d939a1e0836035499e2adec7 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sat, 20 Feb 2021 12:44:26 +0300 Subject: [PATCH] Configure: marked top-level make targets as phony. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported by Thibault NĂ©lis. --- auto/init | 2 ++ auto/install | 2 ++ 2 files changed, 4 insertions(+) diff --git a/auto/init b/auto/init index 910f5294b..f816dfc4d 100644 --- a/auto/init +++ b/auto/init @@ -48,4 +48,6 @@ default: build clean: rm -rf Makefile $NGX_OBJS + +.PHONY: default clean END diff --git a/auto/install b/auto/install index d884487a1..c764fdd2f 100644 --- a/auto/install +++ b/auto/install @@ -215,4 +215,6 @@ upgrade: test -f $NGX_PID_PATH.oldbin kill -QUIT \`cat $NGX_PID_PATH.oldbin\` + +.PHONY: build install modules upgrade END