diff options
author | Björn Gustavsson <[email protected]> | 2012-08-15 11:45:09 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-08-15 11:47:13 +0200 |
commit | 87e74df3187e4cb7497d8bc693a017adbfd302f2 (patch) | |
tree | 28f97a7bf0e05dc7961fefeb617569ab8e832348 | |
parent | c5e5cf792d87e0d23f80ff572f499f0e3e044933 (diff) | |
download | otp-87e74df3187e4cb7497d8bc693a017adbfd302f2.tar.gz otp-87e74df3187e4cb7497d8bc693a017adbfd302f2.tar.bz2 otp-87e74df3187e4cb7497d8bc693a017adbfd302f2.zip |
Fix broken building of bootstrap compiler
Commit df8e67e203b83f95d1e098fec88ad5d0ad840069 broke
"./otp_build update_primary" because epp:parse_file/4 was
added and used from the compiler, but the epp module is not part
of the primary compiler that is used to compile the bootstrap
compiler. Fix the problem by including the epp module in the
primary compiler.
-rw-r--r-- | lib/stdlib/src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stdlib/src/Makefile b/lib/stdlib/src/Makefile index 8bdaae57fd..54186a3ba7 100644 --- a/lib/stdlib/src/Makefile +++ b/lib/stdlib/src/Makefile @@ -167,6 +167,7 @@ docs: # This is a trick so that the preloaded files will get the correct type # specifications. primary_bootstrap_compiler: \ + $(BOOTSTRAP_COMPILER)/ebin/epp.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_scan.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_parse.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_lint.beam \ |