summaryrefslogtreecommitdiffstats
path: root/test/Install/multi-dir/src/SConstruct
blob: 05b46a96aff6450510fe986e14abd421e1709fd4 (plain)
1
2
3
4
5
6
7
8
9
# This tests for a bug where installing a sequence dirs and subdirs
# outside the source tree can cause SCons to fail to create the dest
# dir.
import os, os.path, shutil
DefaultEnvironment(tools=[])
env=Environment(tools=[])
dst='../build'
env.Install(os.path.join(dst,'__foo/bar/baz'), 'a')
env.Install(os.path.join(dst,'__foo/bar/baz/a/b'), 'x/y')