summaryrefslogtreecommitdiffstats
path: root/test/Install/multi-dir/src/SConstruct
blob: e10ec8d6eb58a2d6e0d2272f58ef6078f2545114 (plain)
1
2
3
4
5
6
7
8
# 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
env=Environment()
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')