scons: fix the order of deletion of nested directories during uninstall action

This commit is contained in:
Dane Springmeyer 2010-07-24 22:55:21 +00:00
parent 13ddb5702d
commit 0be5f95e9e

View file

@ -1239,9 +1239,9 @@ if not HELP_REQUESTED:
# todo - generalize this path construction, also used in plugin SConscript...
plugin_dir = os.path.normpath(env['DESTDIR'] + '/' + env['PREFIX'] + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'])
create_uninstall_target(env, plugin_dir, False)
create_uninstall_target(env, plugin_dir + '/input' , False)
create_uninstall_target(env, plugin_dir + '/fonts' , False)
create_uninstall_target(env, plugin_dir, False)
# Build the c++ rundemo app if requested
if env['DEMO']: