diff options
author | Björn Gustavsson <[email protected]> | 2015-03-11 15:44:23 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-04-30 12:15:26 +0200 |
commit | a1f9b09e47dfa56957c36b39d3d3e541c7cd9d19 (patch) | |
tree | c7edf5193895d6252e3dbd61ee48746d0de2b942 | |
parent | 81610bfe41ce7abd05d5a890741687b1b5802b39 (diff) | |
download | otp-a1f9b09e47dfa56957c36b39d3d3e541c7cd9d19.tar.gz otp-a1f9b09e47dfa56957c36b39d3d3e541c7cd9d19.tar.bz2 otp-a1f9b09e47dfa56957c36b39d3d3e541c7cd9d19.zip |
Ensure that erl_anno is used when building the primary bootstrap
As the erl_anno module is used by the compiler, it must be included
in the set of modules that are used when building the primary
bootstrap.
-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 baa178e624..85b858febd 100644 --- a/lib/stdlib/src/Makefile +++ b/lib/stdlib/src/Makefile @@ -169,6 +169,7 @@ docs: # specifications. primary_bootstrap_compiler: \ $(BOOTSTRAP_COMPILER)/ebin/epp.beam \ + $(BOOTSTRAP_COMPILER)/ebin/erl_anno.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_scan.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_parse.beam \ $(BOOTSTRAP_COMPILER)/ebin/erl_lint.beam \ |