Skip to content
Snippets Groups Projects
Commit 2b9b68b5 authored by Federico's avatar Federico
Browse files

Some commits ago when adding the polinode board and switching to C++11 the...

Some commits ago when adding the polinode board and switching to C++11 the Makefile.inc was changed, but the MAKEFILE_VERSION was mistakenly not incremented, which caused issues using git out-of-tree projects. Incrementing version now, you should update your Makefile.inc if you are running a git out-of-tree (i.e. you are using submodules)
parent 2bc41f27
No related branches found
No related tags found
No related merge requests found
## ##
## Makefile for Miosix embedded OS ## Makefile for Miosix embedded OS
## ##
MAKEFILE_VERSION := 1.04 MAKEFILE_VERSION := 1.05
## Path to kernel directory (edited by init_project_out_of_git_repo.pl) ## Path to kernel directory (edited by init_project_out_of_git_repo.pl)
KPATH := miosix KPATH := miosix
## Path to config directory (edited by init_project_out_of_git_repo.pl) ## Path to config directory (edited by init_project_out_of_git_repo.pl)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Makefile for Miosix embedded OS ## Makefile for Miosix embedded OS
## This makefile builds the whole kernel ## This makefile builds the whole kernel
## ##
MAKEFILE_VERSION := 1.04 MAKEFILE_VERSION := 1.05
## KPATH and CONFPATH are forwarded by the parent Makefile ## KPATH and CONFPATH are forwarded by the parent Makefile
include $(CONFPATH)/config/Makefile.inc include $(CONFPATH)/config/Makefile.inc
......
## ##
## Makefile for Miosix embedded OS ## Makefile for Miosix embedded OS
## ##
MAKEFILE_VERSION := 1.04 MAKEFILE_VERSION := 1.05
## Path to kernel directory (edited by init_project_out_of_git_repo.pl) ## Path to kernel directory (edited by init_project_out_of_git_repo.pl)
KPATH := miosix KPATH := miosix
## Path to config directory (edited by init_project_out_of_git_repo.pl) ## Path to config directory (edited by init_project_out_of_git_repo.pl)
......
...@@ -318,7 +318,7 @@ endif ...@@ -318,7 +318,7 @@ endif
## a new board or porting Miosix to a new architecture ## ## a new board or porting Miosix to a new architecture ##
############################################################################ ############################################################################
ifneq ($(MAKEFILE_VERSION),1.04) ifneq ($(MAKEFILE_VERSION),1.05)
$(info You are using an incompatible makefile. Make sure it matches \ $(info You are using an incompatible makefile. Make sure it matches \
the one distributed with the current version of the kernel) the one distributed with the current version of the kernel)
$(error Error) $(error Error)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment