Menu

#77 SConstruct error in Installation section

closed-fixed
5
2007-10-17
2007-10-02
Anonymous
No

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

Discussion

  • Hal Engel

    Hal Engel - 2007-10-02

    Logged In: YES
    user_id=1052244
    Originator: NO

    Changed in CVS. Please test.

     
  • Hal Engel

    Hal Engel - 2007-10-02
    • assigned_to: nobody --> hvengel
    • status: open --> pending-fixed
     
  • SourceForge Robot

    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).

     
  • SourceForge Robot

    • status: pending-fixed --> closed-fixed
     

Log in to post a comment.

MongoDB Logo MongoDB