summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-08-08 12:30:58 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-08-08 12:30:58 +0100
commite4c705006c883461b9627c862fe733fa013bcfc0 (patch)
tree10e15698139625848f350f091e8179cfd8d17460
parent7b8d580069c5ef2dcbfe27845dc7f3e3fc773fe3 (diff)
Fix out-of-tree build, again
Now that I've switched glib-mkenums to run in the srcdir, it's wrong for it to use $(srcdir) for the template.
-rw-r--r--ytstenut/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/ytstenut/Makefile.am b/ytstenut/Makefile.am
index 933944a..53bc259 100644
--- a/ytstenut/Makefile.am
+++ b/ytstenut/Makefile.am
@@ -232,7 +232,7 @@ yts-enum-types.h: stamp-yts-enum-types.h
stamp-yts-enum-types.h: $(libhdr_la_SOURCES) Makefile
$(AM_V_GEN)( cd $(srcdir) && $(GLIB_MKENUMS) \
- --template $(srcdir)/yts-enum-types.h.in \
+ --template yts-enum-types.h.in \
$(libhdr_la_SOURCES) ) >> xgen-ceth && \
(cmp -s xgen-ceth yts-enum-types.h || cp xgen-ceth yts-enum-types.h) && \
rm -f xgen-ceth && \
@@ -240,7 +240,7 @@ stamp-yts-enum-types.h: $(libhdr_la_SOURCES) Makefile
yts-enum-types.c: yts-enum-types.h
$(AM_V_GEN)( cd $(srcdir) && $(GLIB_MKENUMS) \
- --template $(srcdir)/yts-enum-types.c.in \
+ --template yts-enum-types.c.in \
$(libhdr_la_SOURCES) ) >> xgen-cetc && \
cp xgen-cetc yts-enum-types.c && \
rm -f xgen-cetc