From a742e87b39bed97ac59f5ec8bff9bf3cedf8b68a Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Tue, 25 Jun 2013 18:37:35 +0200 Subject: waf: add --without-gettext option Signed-off-by: Christian Ambach Reviewed-by: Andrew Bartlett --- buildtools/wafsamba/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'buildtools') diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index d115b5f4c6..fe2e51507e 100755 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -82,6 +82,9 @@ def set_options(opt): help='additional directory to search for gettext', action='store', dest='gettext_location', default='/usr/local', match = ['Checking for library intl', 'Checking for header libintl.h']) + opt.add_option('--without-gettext', + help=("Disable use of gettext"), + action="store_true", dest='disable_gettext', default=False) gr = opt.option_group('developer options') -- cgit