diff options
author | marius <marius@FreeBSD.org> | 2017-08-05 12:33:00 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2017-08-05 12:33:00 +0000 |
commit | c956791f217f4d713ff9e7a8142ff3e89b07dbad (patch) | |
tree | 2bf556a35cdb08e28ba65ee148c0eccb5bf5685b /lib | |
parent | face790038f173fdc45f1fc75a22520149fe100c (diff) | |
download | FreeBSD-src-c956791f217f4d713ff9e7a8142ff3e89b07dbad.zip FreeBSD-src-c956791f217f4d713ff9e7a8142ff3e89b07dbad.tar.gz |
MFC: r306375
Add a WITHOUT_DIALOG src.conf(5) knob.
It also turns off dependencies (bsdinstall, bsdconfig, dpv, tzsetup).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 57bfc65..7ff9289 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -40,7 +40,7 @@ SUBDIR= ${SUBDIR_ORDERED} \ libdevctl \ libdevinfo \ libdevstat \ - libdpv \ + ${_libdpv} \ libdwarf \ libedit \ ${_libefi} \ @@ -164,6 +164,10 @@ _libbsnmp= libbsnmp _clang= clang .endif +.if ${MK_DIALOG} != "no" +_libdpv= libdpv +.endif + .if ${MK_FILE} != "no" _libmagic= libmagic .endif |