From 0a6522ddd2dd9c92217bd840ffcca159ac078de6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com>
Date: Mon, 14 Sep 2015 12:28:45 -0400
Subject: [PATCH] =?UTF-8?q?build:=20avoid=20usage=20of=20PHONY=20(GNU?=
 =?UTF-8?q?=C2=A0make=20only)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Was not working with the NDK tool chain

Issue: #78221
Change-Id: I7b8fd4eaebce410b41efe955b0fa800cf8319d4c
Signed-off-by: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com>
---
 src/Makefile.am | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 9e16bb6470..3629dbcf73 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -170,4 +170,8 @@ nobase_include_HEADERS+= \
 		dring/videomanager_interface.h
 endif
 
-.PHONY: buildinfo.cpp
+# Force buildinfo to be remade at each build
+buildinfo.cpp: FORCE
+	@touch buildinfo.cpp
+
+FORCE:;
-- 
GitLab