diff options
author | Damien George <damien.p.george@gmail.com> | 2016-01-02 21:56:03 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-01-02 21:56:03 +0000 |
commit | ae4865efa1b4ff4a453bcd5992bf7fdcac69afaa (patch) | |
tree | 246bbf6816f336fb19d38aeb0ebd20691505070e | |
parent | 09630e48cea76e27f8aae6d263fb032b13cbf6f9 (diff) | |
download | micropython-ae4865efa1b4ff4a453bcd5992bf7fdcac69afaa.tar.gz micropython-ae4865efa1b4ff4a453bcd5992bf7fdcac69afaa.zip |
unix/Makefile: Move include of mpconfigport.mk to before mkenv.mk.
So that if MICROPY_FORCE_32BIT is set mpconfigport.mk it influences
mkenv.mk.
-rw-r--r-- | unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile index 06169ddac5..159b07c82b 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -1,5 +1,5 @@ -include ../py/mkenv.mk -include mpconfigport.mk +include ../py/mkenv.mk # define main target PROG = micropython |