diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2013-11-11 10:58:41 +0000 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2013-11-27 10:51:56 +0000 |
commit | 43d92e79f349608bb9cee2158043bc07b50a9b27 (patch) | |
tree | 2fc5c220c52627732bdb437b6c2f8bef84b3bc63 /backends/libsocialweb | |
parent | 75943c1062d0af4abc60bf2d1969f4f0a4d8fb17 (diff) |
build: Rename AM_VALAFLAGS to TARGET_VALAFLAGS in configure.ac
Remembering to always append to AM_VALAFLAGS, rather than define it from
scratch, is hard and error-prone. Simpler and more consistent to define a
new variable, TARGET_VALAFLAGS, which must be manually included in every
AM_VALAFLAGS or target-specific *_VALAFLAGS declaration.
https://bugzilla.gnome.org/show_bug.cgi?id=712274
Diffstat (limited to 'backends/libsocialweb')
-rw-r--r-- | backends/libsocialweb/lib/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/libsocialweb/lib/Makefile.am b/backends/libsocialweb/lib/Makefile.am index 5c26f52a..bff4dded 100644 --- a/backends/libsocialweb/lib/Makefile.am +++ b/backends/libsocialweb/lib/Makefile.am @@ -33,6 +33,7 @@ libfolks_libsocialweb_la_SOURCES = \ libfolks_libsocialweb_la_VALAFLAGS = \ $(AM_VALAFLAGS) \ + $(TARGET_VALAFLAGS) \ $(ERROR_VALAFLAGS) \ --vapidir=. \ --vapidir=$(top_srcdir)/folks \ |