Ticket #45161: oclint_wrapper

File oclint_wrapper, 156 bytes (added by adexter@…, 10 years ago)
Line 
1#!/usr/bin/env python
2
3import os
4import sys
5
6bin_path = '__PREFIX__/share/oclint/bin/__BINARY__'
7args = [bin_path] + sys.argv[1:]
8os.execv(bin_path, args)