repo.or.cz
/
scons.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4655 from bdbaddog/fix_new_ninja_package
[scons.git]
/
test
/
textfile
/
fixture
/
SConstruct.issue-3550
blob
b2708d430be5226f039ea87077e202a25f500c91
1
# SPDX-License-Identifier: MIT
2
#
3
# Copyright The SCons Foundation
4
5
DefaultEnvironment(tools=[])
6
env = Environment(tools=['textfile'])
7
8
env['FOO_PATH'] = r'Z:\mongo\build\install\bin'
9
10
foo = env.Substfile(
11
target="substfile",
12
source="substfile.in",
13
SUBST_DICT={
14
"@foo_path@": "$FOO_PATH",
15
}
16
)