Skip to content

Commit

Permalink
Fix Issue #671
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfer committed Dec 22, 2024
1 parent 431f2fc commit 9405a2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/python/mfront/madnex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void declareMadnexSupport() {
const madnex::MFrontImplementation& i) {
auto f = madnex::File(fn, H5F_ACC_RDWR);
auto r = f.getRoot();
auto g = madnex::openGroup(r, fn);
auto g = madnex::openGroup(r, gn);
madnex::write(g, i);
};

Expand Down
2 changes: 1 addition & 1 deletion mfront/src/CMakeGenerator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ namespace mfront {
if (l.suffix != LibraryDescription::getDefaultLibrarySuffix(
t.system, t.libraryType)) {
m << "set_target_properties(" << l.name << '\n'
<< "PROPERTIES SUFFIX " << l.suffix << ")\n";
<< "PROPERTIES SUFFIX ." << l.suffix << ")\n";
}
if (!l.ldflags.empty()) {
m << "set_target_properties(" << l.name << '\n'
Expand Down

0 comments on commit 9405a2b

Please sign in to comment.