diff options
author | Steven Knight <knight@baldmt.com> | 2002-11-12 10:42:12 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-11-12 10:42:12 (GMT) |
commit | 1cfff0b089cc56024ed5ea71c33ad843373bb9fc (patch) | |
tree | d906050acce808a7b6fe9f63174e4ce8ee4f7205 /etc/SConscript | |
parent | 6a9cd3a308b6aa70d0fbaa7bb32e5a3c8fd32052 (diff) | |
download | SCons-1cfff0b089cc56024ed5ea71c33ad843373bb9fc.zip SCons-1cfff0b089cc56024ed5ea71c33ad843373bb9fc.tar.gz SCons-1cfff0b089cc56024ed5ea71c33ad843373bb9fc.tar.bz2 |
Fix scans for derived include files in Repositories. (Charles Crain)
Diffstat (limited to 'etc/SConscript')
-rw-r--r-- | etc/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/SConscript b/etc/SConscript index 96a464d..adac43e 100644 --- a/etc/SConscript +++ b/etc/SConscript @@ -48,4 +48,6 @@ for file in files: p = os.path.join('build', 'etc', file) if os.path.islink(p): os.unlink(p) - env.Command(os.path.join('#' + p), file, copy) + sp = '#' + p + env.Command(sp, file, copy) + Local(sp) |