summaryrefslogtreecommitdiff
path: root/rld-outputter.cpp
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
committerChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
commit8c841a582f45d8a6cc1b3c439d4f660099e34d1b (patch)
tree6d5099a2bc67b72cbb43c0b3c3af0e8db39ce2cf /rld-outputter.cpp
parent02ccf12ec62e7894786b6fff059f92fdcd7acaa1 (diff)
rld: Split the file into a path module for path specific functions.
This allows resued for other parts of the system not dependent on objcet files or archives.
Diffstat (limited to 'rld-outputter.cpp')
-rw-r--r--rld-outputter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rld-outputter.cpp b/rld-outputter.cpp
index ff9032c..600aedc 100644
--- a/rld-outputter.cpp
+++ b/rld-outputter.cpp
@@ -188,7 +188,7 @@ namespace rld
std::cout << "outputter:archive: " << name
<< ", dependents: " << dependents.size () << std::endl;
- std::string ext = files::extension (name);
+ std::string ext = path::extension (name);
std::string mdname =
name.substr (0, name.length () - ext.length ()) + "-metadata.o";