From c737d348045479f71ea7d31eaeadda16eea94aa9 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 9 Apr 2010 21:34:25 +0000 Subject: Use vpath instead of VPATH. Usage of VPATH makes troubles when used within $(builddir). Not only source files are being found through VPATH, but targets as well. (make --debug=v) Thus if user builds the code in $(srcdir) and also in some $(builddir) he gets mangled results as some generated files (i.e. .export.sym) are 'reused' from $(srcdir) instead of $(builddir). This patch switches to use vpath were we could explicitly name suffixes that should be looked via vpath - we must take care, we do not generate files with these suffixes: .c, .in, .po, .exported_symbols --- po/Makefile.in | 1 - 1 file changed, 1 deletion(-) (limited to 'po') diff --git a/po/Makefile.in b/po/Makefile.in index 22184f110..79bd34005 100644 --- a/po/Makefile.in +++ b/po/Makefile.in @@ -14,7 +14,6 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ -VPATH = @srcdir@ LANGS=de -- cgit v1.2.1