diff options
author | Justus Winter <justus@g10code.com> | 2017-03-15 10:51:03 +0100 |
---|---|---|
committer | Justus Winter <justus@g10code.com> | 2017-03-15 10:51:03 +0100 |
commit | 6993e42088c191f18468317ba2b5b8fbc8c3edff (patch) | |
tree | a4e3f73a8975eb7d65fa33d79e482e39416167ef /Makefile.am | |
parent | g10: Fix check of serialno. (diff) | |
download | gnupg2-6993e42088c191f18468317ba2b5b8fbc8c3edff.tar.xz gnupg2-6993e42088c191f18468317ba2b5b8fbc8c3edff.zip |
build: Remove '--disable-tools' configuration option.
* Makefile.am (SUBDIRS): Unconditionally include 'tools'.
* configure.ac: Remove '--disable-tools' configuration option.
--
gpgconf is a core component nowadays and is always required.
GnuPG-bug-id: 2993
Signed-off-by: Justus Winter <justus@g10code.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index 71e691afd..7d023c1af 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,11 +81,6 @@ dirmngr = dirmngr else dirmngr = endif -if BUILD_TOOLS -tools = tools -else -tools = -endif if BUILD_DOC doc = doc else @@ -94,7 +89,7 @@ endif SUBDIRS = m4 common kbx \ ${gpg} ${sm} ${agent} ${scd} ${g13} ${dirmngr} \ - ${tools} po ${doc} tests + tools po ${doc} tests dist_doc_DATA = README |