]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Include libmode in library lookup hash
[builder.git] / source / systemlibrary.h
index a0b315acee348c8696fa7378c91981da7d713280..2b56f4cf61f41e22822890e8f96d9ccdf88d8844 100644 (file)
@@ -19,9 +19,10 @@ public:
        SystemLibrary(Builder &, const std::string &);
        const char        *get_type() const    { return "SystemLibrary"; }
        const std::string &get_libname() const { return libname; }
-       Action            *build()             { return 0; }
 private:
        std::string libname;
+
+       virtual Action    *create_action()     { return 0; }
 };
 
 #endif