diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-07-06 16:09:45 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-07-06 16:09:45 (GMT) |
commit | 08c027aee6627a5eb2d7cef2834df2949745eb0e (patch) | |
tree | f0378b979fe4c299d34b2c89b762c942a5429d50 /site_scons | |
parent | ad3f21fbf0667f5b654771176d29dbdf75d9b120 (diff) | |
download | SCons-08c027aee6627a5eb2d7cef2834df2949745eb0e.zip SCons-08c027aee6627a5eb2d7cef2834df2949745eb0e.tar.gz SCons-08c027aee6627a5eb2d7cef2834df2949745eb0e.tar.bz2 |
Fix version info in scons-local package scripts
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/scons_local_package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/site_scons/scons_local_package.py b/site_scons/scons_local_package.py index 445dc05..5e633e9 100644 --- a/site_scons/scons_local_package.py +++ b/site_scons/scons_local_package.py @@ -56,7 +56,9 @@ def install_local_package_files(env): 'scripts/scons-configure-cache.py', 'scripts/sconsign.py', 'bin/scons-time.py'] - all_local_installed.extend(env.Install('#/build/scons-local', basedir_files)) + for bf in basedir_files: + fn = os.path.basename(bf) + all_local_installed.append(env.SCons_revision('#/build/scons-local/%s'%fn, bf)) rename_files = [('scons-${VERSION}.bat', 'scripts/scons.bat'), ('scons-README', 'README-local'), |