~ubuntu-branches/ubuntu/precise/flightgear/precise

« back to all changes in this revision

Viewing changes to src/Systems/system_mgr.cxx

  • Committer: Package Import Robot
  • Author(s): Ove Kaaven
  • Date: 2011-09-03 22:16:12 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20110903221612-2cjy0z7ztj5nkln5
Tags: 2.4.0-1
* New upstream release. Closes: #638588.
* Build-Depend on OpenSceneGraph 3.0, and the Subversion library.
* Recommend fgfs-scenery-base.
* Enable parallel builds (shorter compile times on multicore CPUs).
* Removed hack that tried to build without optimizations if
  building with optimizations fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    SGPropertyNode *path_n = fgGetNode("/sim/systems/path");
35
35
 
36
36
    if (path_n) {
37
 
        SGPath config( globals->get_fg_root() );
38
 
        config.append( path_n->getStringValue() );
 
37
        SGPath config = globals->resolve_aircraft_path(path_n->getStringValue());
39
38
 
40
39
        SG_LOG( SG_ALL, SG_INFO, "Reading systems from "
41
40
                << config.str() );