From 7dec65de1a2f3c879a53a7a1649b0d8899412a39 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 18 Apr 2013 11:30:24 -0400 Subject: build: Fix srcdir != builddir from git Mimicing Colin's commit fb9b02e for E-D-S. We can't do (cd $(srcdir); ...) and inside reference $(top_srcdir) because that variable uses a *relative* path. Thus we copy the approach from gnome-shell of explicitly using addprefix to append the source directory. --- e-util/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'e-util/Makefile.am') diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 367add596b..84331e24aa 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -7,15 +7,15 @@ ruledir = $(privdatadir) ENUM_TYPES = e-util-enums.h e-util-enumtypes.h: $(top_srcdir)/enumtypes.h.template $(ENUM_TYPES) - $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.h.template \ + $(AM_V_GEN) $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.h.template \ --fhead "#ifndef E_UTIL_ENUMTYPES_H\n#define E_UTIL_ENUMTYPES_H\n" \ --ftail "#endif /* E_UTIL_ENUMTYPES_H */\n" \ - $(ENUM_TYPES)) > $@ + $(addprefix $(srcdir)/,$(ENUM_TYPES)) > $@ e-util-enumtypes.c: $(top_srcdir)/enumtypes.c.template $(ENUM_TYPES) - $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.c.template \ + $(AM_V_GEN) $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.c.template \ --fhead "#include \"e-util-enumtypes.h\"" \ - $(ENUM_TYPES)) > $@ + $(addprefix $(srcdir)/,$(ENUM_TYPES)) > $@ e-marshal.h: e-marshal.list $(AM_V_GEN) $(GLIB_GENMARSHAL) --header --prefix=e_marshal $^ > e-marshal.h.tmp && \ -- cgit v1.2.3