diff options
Diffstat (limited to 'buildtools/wafsamba/samba_autoconf.py')
-rw-r--r-- | buildtools/wafsamba/samba_autoconf.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index e91409e0a4..1c1095ea47 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -418,3 +418,13 @@ def CHECK_RPATH_SUPPORT(conf): execute=True, msg='Checking for rpath support', cflags='-Wl,-rpath=.') + +@conf +def CHECK_CC_ENV(conf): + '''trim whitespaces from 'CC'. + The build farm sometimes puts a space at the start''' + if os.environ.get('CC'): + conf.env.CC = TO_LIST(os.environ.get('CC')) + if len(conf.env.CC) == 1: + # make for nicer logs if just a single command + conf.env.CC = conf.env.CC[0] |