From 0d050d83b44af776d16d1848928c5752fee66805 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 16 Feb 2018 15:24:58 +0100 Subject: [PATCH] Add missing .PHONY in portable Makefile The recipe "build-portable" is also the name of the generated directory. Add this name to the .PHONY list. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb67ca32..523dccbd 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # This is a simple Makefile because Meson is not flexible enough to execute some # arbitrary commands. -.PHONY: default clean release-portable dist-portable dist-portable-zip sums test check +.PHONY: default clean build-portable release-portable dist-portable dist-portable-zip sums test check GRADLE ?= ./gradlew