Lines 324 to 334 are generating errors. These read
macApp = env.Install(os.path.normpath(env("MacBundlePath") + "/Applications/lprof.app/Contents/MacOS"), '#' + "build/darwin/lprof")
env.Alias('install', macApp);
macResources = env.Install(os.path.normpath(env("MacBundlePath") + "/Applications/lprof.app/Contents/Resources"), '#' + "build/darwin/lprof.app/Contents/Resources/lprof.icn")
env.Alias('install', macResources);
macPlist = env.Install(os.path.normpath(env("MacBundlePath") + "/Applications/lprof.app"), '#' + "build/darwin/lprof.app/Info.plist")
env.Alias('install', macPlist);
idir_data = os.path.normpath(env("MacBundlePath") + "/Applications/lprof.app/Contents/MacOS/")
Should be (I guess):
macApp = env.Install(os.path.normpath(env['MacBundlePath'] + '/Applications/lprof.app/Contents/MacOS'), '#' + 'build/darwin/lprof')
env.Alias('install', macApp);
macResources = env.Install(os.path.normpath(env['MacBundlePath'] + '/Applications/lprof.app/Contents/Resources'), '#' + 'build/darwin/lprof.app/Contents/Resources/lprof.icn')
env.Alias('install', macResources);
macPlist = env.Install(os.path.normpath(env['MacBundlePath'] + '/Applications/lprof.app'), '#' + 'build/darwin/lprof.app/Info.plist')
env.Alias('install', macPlist);
idir_data = os.path.normpath(env['MacBundlePath'] + '/Applications/lprof.app/Contents/MacOS/')
Cheers
Mark
dev@cinescan.com
Logged In: YES
user_id=1052244
Originator: NO
Changed in CVS. Please test.
Logged In: YES
user_id=1312539
Originator: NO
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).