stdout: add a simple stdout redirector
This commit is contained in:
parent
1cfff20fa5
commit
67847a4c01
12
stdout.sh
Executable file
12
stdout.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# A trivial script that takes an output file as the first argument, an
|
||||||
|
# executable as the second, and subsequent arguments. stdout is piped to the
|
||||||
|
# output file.
|
||||||
|
#
|
||||||
|
# This is used to workaround CMake's inflexible output options for custom
|
||||||
|
# targets.
|
||||||
|
|
||||||
|
dst=$1
|
||||||
|
shift 1
|
||||||
|
exec $@ > $dst
|
Loading…
Reference in New Issue
Block a user