]> git.tdb.fi Git - builder.git/blobdiff - source/filetarget.cpp
Un-abbreviate some function and variable names
[builder.git] / source / filetarget.cpp
index 9908c0d4d2836c36c5e05e1eda9aa221bab067b2..21c2bbf2019bc9fb64bbd80a2f48408d239400ea 100644 (file)
@@ -39,9 +39,9 @@ void FileTarget::init(const SourcePackage *p)
 
 string FileTarget::generate_name(Builder &builder, const SourcePackage *pkg, const FS::Path &path)
 {
-       if(pkg && FS::descendant_depth(path, pkg->get_source())>=0)
+       if(pkg && FS::descendant_depth(path, pkg->get_source_directory())>=0)
        {
-               FS::Path relpath = FS::relative(path, pkg->get_source());
+               FS::Path relpath = FS::relative(path, pkg->get_source_directory());
                return format("<%s>%s", pkg->get_name(), relpath.str().substr(1));
        }
        else if(FS::descendant_depth(path, builder.get_prefix())>=0)