diff options
author | Alex Richardson <arichardson@FreeBSD.org> | 2020-08-26 09:19:49 +0000 |
---|---|---|
committer | Alex Richardson <arichardson@FreeBSD.org> | 2020-08-26 09:19:49 +0000 |
commit | 18de62a94a6ef397d43060d1e370ef0aaeeaba16 (patch) | |
tree | 06886b4726dff9ca06e08d4d11a4d73ce07458ad /lib | |
parent | 2d6bee8f00c3ff1689a67fc2b60baf0503fe6999 (diff) | |
download | src-18de62a94a6ef397d43060d1e370ef0aaeeaba16.tar.gz src-18de62a94a6ef397d43060d1e370ef0aaeeaba16.zip |
Notes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 45c10e7e5c57..d196ae4c3687 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -23,9 +23,12 @@ SUBDIR_BOOTSTRAP= \ msun # The main list; please keep these sorted alphabetically. +# The only exception is sqlite3: we place it at the start of the list since it +# takes a long time to build and starting it first improves parallelism. SUBDIR= ${SUBDIR_BOOTSTRAP} \ .WAIT \ + libsqlite3 \ geom \ libalias \ libarchive \ @@ -84,7 +87,6 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \ librtld_db \ libsbuf \ libsmb \ - libsqlite3 \ libstdbuf \ libstdthreads \ libsysdecode \ |