From 18672bb72051a50cd9f7c45c274ae705e0605611 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 29 Oct 2016 19:44:24 +0300 Subject: [PATCH] Change the suffix of modules .m is already used by Objective-C. It seems there's some precedent of .dlm as Dynamic Link Module. --- source/sharedlibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.43.0