Skip to content

Commit

Permalink
Fix path to .a on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
gilles-duboscq committed Oct 2, 2019
1 parent 3a8ad5c commit f78b6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/mx.vm/mx_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def _add_link(_dest, _target, _component=None):
# Temporary workaround until GR-16855 an SVM module provides the .a files
_add(layout, self.jdk_base + '/lib/', {
'source_type': 'file',
'path': _src_jdk_dir + '/lib/*.a',
'path': _src_jdk_dir + (('/' + _src_jdk_base) if _src_jdk_base != '.' else '') + '/lib/*.a',
})

# Add vm.properties
Expand Down

0 comments on commit f78b6f5

Please sign in to comment.