Xiangfu Liu wrote: > 'relative path' and '.git extention' fixed in script repository
Great, thanks ! Our development environment is getting nicer every day :-) By the way, you may be a bit too cautious when it comes to the use of whitespace in Makefiles. E.g., this RTEMS_MAKEFILE_PATH?=\ /opt/rtems-$(RTEMS_VERSION)/lm32-rtems$(RTEMS_VERSION)/milkymist could be written in the following more readable form: RTEMS_MAKEFILE_PATH ?= \ /opt/rtems-$(RTEMS_VERSION)/lm32-rtems$(RTEMS_VERSION)/milkymist While spaces around "=" in (Bourne) shell scripts have unintended consequences, Make does tolerate any amount of spaces or tabs around assignment operators. - Werner _______________________________________________ http://lists.milkymist.org/listinfo.cgi/devel-milkymist.org IRC: #milkymist@Freenode