diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 18:03:27 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 18:03:27 +0100 |
commit | d553be5982722fc5ee5240fbfb15697849881ced (patch) | |
tree | 4312b491aaee255ed7d8dbffe74f79011de1c426 /stmhal/pyexec.c | |
parent | 2d1f865d16c5a7e27f5e46c96d087a7ff8a49012 (diff) |
build: Simplify build directory layout by putting all headers in genhdr.
Any generated headers go in $(BUILD)/genhdr/, and are #included as
'genhdr/xxx.h'.
Diffstat (limited to 'stmhal/pyexec.c')
-rw-r--r-- | stmhal/pyexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index 9821e6a92..3f9482ec5 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -22,7 +22,7 @@ #include "readline.h" #include "pyexec.h" #include "usb.h" -#include "build/py/py-version.h" +#include "genhdr/py-version.h" pyexec_mode_kind_t pyexec_mode_kind = PYEXEC_MODE_FRIENDLY_REPL; STATIC bool repl_display_debugging_info = 0; |