We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f405a9f commit 0056ff8Copy full SHA for 0056ff8
src/geant4_python_application/__init__.py
@@ -29,6 +29,8 @@
29
_geant4_libs_dir = os.path.join(_geant4_prefix, "lib")
30
31
for lib in _geant4_libs.split()[1:]:
32
+ if not lib.startswith("-l"):
33
+ continue
34
# lib has format -l<libname>, transform to file name which is lib<libname>
35
library_absolute_path = os.path.join(_geant4_libs_dir, "lib" + lib[2:])
36
if sys.platform == "darwin":
0 commit comments