From: Mikko Rasa Date: Sat, 29 Oct 2016 16:44:24 +0000 (+0300) Subject: Change the suffix of modules X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=18672bb72051a50cd9f7c45c274ae705e0605611 Change the suffix of modules .m is already used by Objective-C. It seems there's some precedent of .dlm as Dynamic Link Module. --- diff --git a/source/sharedlibrary.cpp b/source/sharedlibrary.cpp index 6c816bd..c25c6f2 100644 --- a/source/sharedlibrary.cpp +++ b/source/sharedlibrary.cpp @@ -62,7 +62,7 @@ string SharedLibrary::generate_filename(const Component &comp) { const BinaryComponent &bcomp = dynamic_cast(comp); if(bcomp.get_type()==BinaryComponent::MODULE) - return comp.get_name()+".m"; + return comp.get_name()+".dlm"; else { const Architecture &arch = comp.get_package().get_builder().get_current_arch();