summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-09-22 22:15:47 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-09-22 22:15:47 (GMT)
commit4fe5ff748a5831be8279c3c9bc1c198fcacc9aca (patch)
treeadf77c2972b107d5743d253b0d26363e089a6152
parentefb7469bf68d57b590fa477f0ea2224d339f679f (diff)
downloadSCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.zip
SCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.tar.gz
SCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.tar.bz2
fix missing file from test fixture
-rw-r--r--test/Actions/pre-post-fixture/work4/build.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Actions/pre-post-fixture/work4/build.py b/test/Actions/pre-post-fixture/work4/build.py
new file mode 100644
index 0000000..db0572a
--- /dev/null
+++ b/test/Actions/pre-post-fixture/work4/build.py
@@ -0,0 +1,5 @@
+import sys
+outfp = open(sys.argv[1], 'wb')
+for f in sys.argv[2:]:
+ outfp.write(open(f, 'rb').read())
+outfp.close()