Hello,

To compile the last revision of the MELT branch, I have been obliged to do the following change in the Makefile: We were trying to install the file gcc/melt-default-modules which doesn't exist, we now install melt-default-modules.modlis. The loops installing the different /melt-default-modules-*.modlis was incorrect, a ';' was missing in the install instruction.



Pierre Vittet
2011-07-15  Pierre Vittet  <pier...@pvittet.com>
        * Makefile.in (install-melt-default-modules-list): Fix bad file call.

Index: gcc/Makefile.in
===================================================================
--- gcc/Makefile.in     (revision 176307)
+++ gcc/Makefile.in     (working copy)
@@ -5473,9 +5473,9 @@ install-melt-mk: melt-module.mk
 
 ## install the default modules list
 install-melt-default-modules-list: $(melt_default_modules_list).modlis 
$(wildcard $(melt_default_modules_list)-*.modlis)
-       $(INSTALL_DATA) $(melt_default_modules_list) 
$(DESTDIR)/$(melt_module_dir) 
-       for f in  $(wildcard $(melt_default_modules_list)-*.modlis) ; do \
-         $(INSTALL_DATA) $$f $(DESTDIR)/$(melt_module_dir) \
+       $(INSTALL_DATA) $(melt_default_modules_list).modlis 
$(DESTDIR)/$(melt_module_dir) 
+       for f in $(wildcard $(melt_default_modules_list)-*.modlis) ; do \
+         $(INSTALL_DATA) $$f $(DESTDIR)/$(melt_module_dir); \
        done
 
 #### this phony target is given manually to copy the generated

Reply via email to