X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.h;h=f47f25931489928c0f98524a62b85f37cd867f72;hb=4d0d003b022943d8a0e39ba19078bab8d32d8857;hp=3e30790c5f7192e63039eae1464ab29f63f739be;hpb=0ac8d6708b8c758fb89d97a0049d4a329990b83b;p=builder.git diff --git a/source/sourcepackage.h b/source/sourcepackage.h index 3e30790..f47f259 100644 --- a/source/sourcepackage.h +++ b/source/sourcepackage.h @@ -50,15 +50,15 @@ public: void tar_file(const std::string &); }; - SourcePackage(Builder &, const std::string &, const Msp::Path::Path &); - void set_path(const Msp::Path::Path &); + SourcePackage(Builder &, const std::string &, const Msp::Path &); + void set_path(const Msp::Path &); const std::string &get_name() const { return name; } const std::string &get_version() const { return version; } const std::string &get_description() const { return description; } - const Msp::Path::Path &get_source() const { return source; } - Msp::Path::Path get_temp_dir() const; - Msp::Path::Path get_out_dir() const; - Msp::Path::Path get_prefix() const { return config.get_option("prefix").value; } + const Msp::Path &get_source() const { return source; } + Msp::Path get_temp_dir() const; + Msp::Path get_out_dir() const; + Msp::Path get_prefix() const { return config.get_option("prefix").value; } const ComponentList &get_components() const { return components; } const Config &get_config() const { return config; } const BuildInfo &get_build_info() const { return build_info; } @@ -73,7 +73,7 @@ private: std::string version; std::string description; - Msp::Path::Path source; + Msp::Path source; PackageList base_reqs; FeatureList features; BuildInfo build_info;