diff options
author | Rob Austein <sra@hactrn.net> | 2011-03-03 16:47:18 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-03-03 16:47:18 +0000 |
commit | 1ef9bcc07238c34b3031449d3e69dbb03c79bece (patch) | |
tree | 6e6045a9dece4888dd74044e68e5baaffdd8d448 /buildtools | |
parent | 4ff9d2aa00a0c5eeee198c115744c828755a21ca (diff) |
Don't add extra newline
svn path=/buildtools/subst-vars.py; revision=3713
Diffstat (limited to 'buildtools')
-rwxr-xr-x | buildtools/subst-vars.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/subst-vars.py b/buildtools/subst-vars.py index 3e9ad039..5083c2dd 100755 --- a/buildtools/subst-vars.py +++ b/buildtools/subst-vars.py @@ -25,4 +25,4 @@ for v in os.environ: if v.startswith('AC_'): d[v] = os.environ[v] -print sys.stdin.read() % d +sys.stdout.write(sys.stdin.read() % d) |