diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-20 00:14:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-20 12:58:57 +0200 |
commit | a94bed317881395b68cb06a8c637095ca6c98cd3 (patch) | |
tree | cf5ca6062d5b744ee412f6ea9c5d5cbbb1ab556a | |
parent | db9180c3d91253ee7dac1ed943f9a5a5b9e1a5a7 (diff) | |
download | samba-a94bed317881395b68cb06a8c637095ca6c98cd3.tar.gz samba-a94bed317881395b68cb06a8c637095ca6c98cd3.tar.bz2 samba-a94bed317881395b68cb06a8c637095ca6c98cd3.zip |
Revert "wafsamba/irixcc: add '-c99' option to cc"
This reverts commit 59daf91f397c2ebef283ab9e6ecaabbe9dc58fc5.
Doesn't seem to work :-(
metze
-rw-r--r-- | buildtools/wafsamba/irixcc.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/buildtools/wafsamba/irixcc.py b/buildtools/wafsamba/irixcc.py index f29f9a0a62..a7b0a74d87 100644 --- a/buildtools/wafsamba/irixcc.py +++ b/buildtools/wafsamba/irixcc.py @@ -17,9 +17,7 @@ def find_irixcc(conf): cc = None if v['CC']: cc = v['CC'] elif 'CC' in conf.environ: cc = conf.environ['CC'] - if not cc: - cc = conf.find_program('cc', var='CC') - cc += ' -c99' + if not cc: cc = conf.find_program('cc', var='CC') if not cc: conf.fatal('irixcc was not found') cc = conf.cmd_to_list(cc) |