diff options
author | des <des@FreeBSD.org> | 2013-02-04 19:05:53 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2013-02-04 19:05:53 +0000 |
commit | 4276b11f079dc95b96111a7a20af3feeb9716e62 (patch) | |
tree | fa10091aa85fad8c43211a46e982c69ce78097a1 | |
parent | 2a731cd0dd5f3265dcf3093fbbe4200aae9e90dd (diff) | |
download | FreeBSD-src-4276b11f079dc95b96111a7a20af3feeb9716e62.zip FreeBSD-src-4276b11f079dc95b96111a7a20af3feeb9716e62.tar.gz |
Sort by MK_* knob like the comment says
MFC after: 1 week
-rw-r--r-- | lib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 132302e..1447002 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -177,6 +177,11 @@ _libiconv_modules= libiconv_modules _libipx= libipx .endif +.if ${MK_LIBCPLUSPLUS} != "no" +_libcxxrt= libcxxrt +_libcplusplus= libc++ +.endif + .if ${MK_LIBTHR} != "no" _libthr= libthr .endif @@ -221,11 +226,6 @@ _librtld_db= librtld_db _libmp= libmp .endif -.if ${MK_LIBCPLUSPLUS} != "no" -_libcxxrt= libcxxrt -_libcplusplus= libc++ -.endif - .if ${MK_PMC} != "no" _libpmc= libpmc .endif |