Merge pull request #4655 from bdbaddog/fix_new_ninja_package
[scons.git] / test / textfile / fixture / SConstruct.issue-3550
blobb2708d430be5226f039ea87077e202a25f500c91
1 # SPDX-License-Identifier: MIT
3 # Copyright The SCons Foundation
5 DefaultEnvironment(tools=[])
6 env = Environment(tools=['textfile'])
8 env['FOO_PATH'] = r'Z:\mongo\build\install\bin'
10 foo = env.Substfile(
11     target="substfile",
12     source="substfile.in",
13     SUBST_DICT={
14         "@foo_path@": "$FOO_PATH",
15     }