Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 30, 2011, 9:31:02 PM (13 years ago)
Author:
rgrieder
Message:

Renamed PathConfig::isDevelopmentRun() to PathConfig::buildDirectoryRun() because that fits better and there is no confusion with Core::inDevMode().
Also used isDevelopmentRun() as default value for Core::inDevMode() instead of ORXONOX_RELEASE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/core/command/TclBind.cc

    r8079 r8366  
    140140    {
    141141#ifdef DEPENDENCY_PACKAGE_ENABLE
    142         if (PathConfig::isDevelopmentRun())
     142        if (PathConfig::buildDirectoryRun())
    143143            return (std::string(specialConfig::dependencyLibraryDirectory) + "/tcl");
    144144        else
    145             return (PathConfig::getRootPathString() + "lib/tcl");
     145            return (PathConfig::getRootPathString() + specialConfig::defaultLibraryPath + "/tcl");
    146146#else
    147147        return "";
Note: See TracChangeset for help on using the changeset viewer.