add tweak to uninstall target missed in r2036
This commit is contained in:
parent
267b48de49
commit
a4872eb522
1 changed files with 5 additions and 2 deletions
|
@ -49,5 +49,8 @@ if env['HAS_BOOST_SYSTEM']:
|
|||
|
||||
shapeindex = env.Program('shapeindex', source, CPPPATH=headers, LIBS=libraries)
|
||||
|
||||
env.Install(install_prefix + '/bin', shapeindex)
|
||||
env.Alias('install', install_prefix + '/bin')
|
||||
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
||||
env.Install(install_prefix + '/bin', shapeindex)
|
||||
env.Alias('install', install_prefix + '/bin')
|
||||
|
||||
env['create_uninstall_target'](env, install_prefix + '/bin/' + 'shapeindex')
|
Loading…
Reference in a new issue