------------------------------------------------------------ revno: 398 committer: Steven Sheehy <[email protected]> branch nick: trunk timestamp: Wed 2010-10-13 23:31:03 -0500 message: Fix scons install regression modified: SConstruct
-- lp:linuxdcpp https://code.launchpad.net/~linuxdcpp-team/linuxdcpp/trunk Your team LinuxDC++ Team is subscribed to branch lp:linuxdcpp. To unsubscribe from this branch go to https://code.launchpad.net/~linuxdcpp-team/linuxdcpp/trunk/+edit-subscription
=== modified file 'SConstruct' --- SConstruct 2010-10-13 04:30:29 +0000 +++ SConstruct 2010-10-14 04:31:03 +0000 @@ -69,7 +69,7 @@ # Install app icons to share/icons and all others to share/linuxdcpp/icons def install_icons(env, icons_dir): - prefix = os.path.join(env['FAKE_ROOT'], env['PREFIX'], 'share') + prefix = env['FAKE_ROOT'] + os.path.join(env['PREFIX'], 'share') for root, dirs, files in os.walk(icons_dir): for file in files:
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : [email protected] Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp

