From: John Marino Date: Tue, 3 Nov 2015 13:34:49 +0000 (+0100) Subject: lib: Add liblzma to the build order X-Git-Tag: v4.5.0~202 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/ede06bcef1e04159464bef8c640ce38724a1e42f lib: Add liblzma to the build order The latest liblzma now requires libpthread and thus it must be guaranteed to be built before liblzma is built. Move liblzma into the library ordering accordingly. --- diff --git a/lib/Makefile b/lib/Makefile index e18b3dc3e6..0d0d8eb923 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -13,7 +13,7 @@ # libtacplus must be built before libpam. # libthread_xu must be built before libpthread. # libutil must be built before libpam. -# libpthread must be built before libprop. +# libpthread must be built before liblmza. # libelf must be built before libexecinfo # # Otherwise, the SUBDIR list should be in alphabetical order. @@ -28,6 +28,7 @@ SUBDIR_ORDERED= ${_libc_r} \ libthread_xu \ libutil \ libpthread \ + liblzma \ libelf \ libexecinfo SUBDIR= ${SUBDIR_ORDERED} \ @@ -62,7 +63,6 @@ SUBDIR= ${SUBDIR_ORDERED} \ libkinfo \ libkvm \ libldns \ - liblzma \ libm \ libmagic \ libmandoc \