1From 23c6e9df611c86a5e97079e1b88c7a18474bf0bc Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 16 Dec 2016 16:52:04 +0200
4Subject: [PATCH] Correctly check the stamp file that indicates if we need to
5 re-build vala code
6
7Upstream-Status: Submitted [https://github.com/lxde/libfm/pull/85]
8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
9---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/configure.ac b/configure.ac
14index d043b3d..0e85590 100644
15--- a/configure.ac
16+++ b/configure.ac
17@@ -42,7 +42,7 @@ AM_COND_IF(EXTRALIB_ONLY,
18     [enable_actions=no])
19 if test x"$enable_actions" = xyes; then
20     dnl no vala compiler required when sources are from dist tarball
21-    if test -f src/actions/libfmactions_la_vala.stamp; then
22+    if test -f $srcdir/src/actions/libfmactions_la_vala.stamp; then
23         AM_PROG_VALAC
24     else
25         AM_PROG_VALAC([0.13.0])
26--
272.10.2
28
29