From 06db3bfa374026c05dc21bf0454234dbdbedb26b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 15 Mar 2012 17:04:00 +0100 Subject: waf: Add autoconf --target support. This is needed on some platforms so that you can set it and it is not automagically transformed into --targets. The --target option is normally set by the RPM %configure macro. Autobuild-User: Andreas Schneider Autobuild-Date: Wed Mar 21 11:54:02 CET 2012 on sn-devel-104 --- buildtools/wafsamba/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'buildtools/wafsamba/wscript') diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 094f9cc5b4..49d21078c4 100755 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -156,6 +156,9 @@ def set_options(opt): opt.add_option('--host', help=SUPPRESS_HELP, action='store', dest='AUTOCONF_HOST', default='') + opt.add_option('--target', + help=SUPPRESS_HELP, + action='store', dest='AUTOCONF_TARGET', default='') opt.add_option('--program-prefix', help=SUPPRESS_HELP, action='store', dest='AUTOCONF_PROGRAM_PREFIX', default='') -- cgit