| Index: fusl/tools/sysroot_nothing.py
|
| diff --git a/fusl/tools/sysroot_nothing.py b/fusl/tools/sysroot_nothing.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bff16bc09dfec845f35c7e6ab57dcfa4f79c4654
|
| --- /dev/null
|
| +++ b/fusl/tools/sysroot_nothing.py
|
| @@ -0,0 +1,16 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import os
|
| +import sys
|
| +
|
| +def stamp():
|
| + stamp_file = sys.argv[1]
|
| + try:
|
| + os.utime(stamp_file, None)
|
| + except:
|
| + open(stamp_file, 'a')
|
| +
|
| +if __name__ == '__main__':
|
| + stamp()
|
|
|