From adf342ff440e8ccc5b622f9d97d19045c24c229d Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Mon, 6 Jan 2014 18:05:43 +0100 Subject: [PATCH] build: added _build/ to POTFILES.skip Ok, this one is so shitty is not even funny. When in VPATH build under a subdirectory of top_srcdir, make check is failing in po/ with: srcdir=../../po /usr/bin/intltool-update -m The following files contain [...bullshits cut...] [VPATH dir]/demo/adg-demo.ui [VPATH dir]/demo/cpml-demo.ui If some of these files are left out [...further bullshits...] Now the above files are generated by configure: how am I supposed to behave? I cannot add them to POTFILES.skip because the damned thingy (AKA intltool) looks in all the subdirectory under top_srcdir. To keep my sanity I added _build/ to POTFILES.skip and I will force myself to use it (hoping to remember this) in VPATH builds. --- po/POTFILES.skip | 1 + 1 file changed, 1 insertion(+) diff --git a/po/POTFILES.skip b/po/POTFILES.skip index f19c2bc8..75cfed32 100644 --- a/po/POTFILES.skip +++ b/po/POTFILES.skip @@ -1,3 +1,4 @@ demo/adg-demo.ui demo/cpml-demo.ui demo/cpml-demo-gtk2.c +_build/ -- 2.11.4.GIT