e: fix relative/absolute path usage in automake

automake thinks it's good to mix absolute and relative path, based on
where the build dir is. So, $(top_srcdir) is not always relative
regardless the fact that if we wanted it to be absolute we could have
used $(abs_top_srcdir). So... use the absolute dir. Always.



SVN revision: 78999
This commit is contained in:
Lucas De Marchi 2012-11-08 14:20:28 +00:00
parent c5f1ac5065
commit bf8f13e811
1 changed files with 4 additions and 4 deletions

View File

@ -100,11 +100,11 @@ wizard_page_130_la_DEPENDENCIES = $(MDEPENDENCIES)
wizard_page_140_la_SOURCES = wizard/page_140.c
wizard_page_140_la_DEPENDENCIES = $(MDEPENDENCIES)
wizard/e_mod_comp_main.h: $(top_srcdir)/src/modules/comp/e_mod_main.h
$(AM_V_GEN) $(LN_S) -f ../$< $@
wizard/e_mod_comp_main.h: $(abs_top_srcdir)/src/modules/comp/e_mod_main.h
$(AM_V_GEN) $(LN_S) -f $< $@
wizard/e_mod_comp_cfdata.h: $(top_srcdir)/src/modules/comp/e_mod_comp_cfdata.h
$(AM_V_GEN) $(LN_S) -f ../$< $@
wizard/e_mod_comp_cfdata.h: $(abs_top_srcdir)/src/modules/comp/e_mod_comp_cfdata.h
$(AM_V_GEN) $(LN_S) -f $< $@
wizard/e_mod_comp_cfdata.c: $(top_srcdir)/src/modules/comp/e_mod_comp_cfdata.c wizard/e_mod_comp_main.h wizard/e_mod_comp_cfdata.h
$(AM_V_GEN) $(SED) 's/e_mod_main\.h/e_mod_comp_main.h/g' $< > $@