diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2019-10-16 15:12:39 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-21 23:01:41 +1100 |
commit | 8ba963cfa3da8e712e94c2429cfd6f064b1b4c69 (patch) | |
tree | 80ba4c57de3e596b2752d630621b6e5c1727ba06 /ports/unix/manifest.py | |
parent | 12413e92a3f938bdfe844bd65bf189ee1431e1d0 (diff) |
tools/makemanifest.py: Eval relative paths w.r.t. current manifest file.
When loading a manifest file, e.g. by include(), it will chdir first to the
directory of that manifest. This means that all file operations within a
manifest are relative to that manifest's location.
As a consequence of this, additional environment variables are needed to
find absolute paths, so the following are added: $(MPY_LIB_DIR),
$(PORT_DIR), $(BOARD_DIR). And rename $(MPY) to $(MPY_DIR) to be
consistent.
Existing manifests are updated to match.
Diffstat (limited to 'ports/unix/manifest.py')
-rw-r--r-- | ports/unix/manifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/unix/manifest.py b/ports/unix/manifest.py index 3f332446d..666b4c0ab 100644 --- a/ports/unix/manifest.py +++ b/ports/unix/manifest.py @@ -1,2 +1,2 @@ -freeze_as_mpy('$(MPY)/tools', 'upip.py') -freeze_as_mpy('$(MPY)/tools', 'upip_utarfile.py', opt=3) +freeze_as_mpy('$(MPY_DIR)/tools', 'upip.py') +freeze_as_mpy('$(MPY_DIR)/tools', 'upip_utarfile.py', opt=3) |