We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 267c4ee commit 8455fbaCopy full SHA for 8455fba
tools/shared.py
@@ -2006,7 +2006,7 @@ def path_to_system_js_libraries(library_name):
2006
# TODO: This is unintentional due to historical reasons. Improve EGL to use HTML5 API to avoid depending on GLUT.
2007
if library_name == 'EGL': library_files += ['library_glut.js']
2008
2009
- elif library_name.endswith('.js') and os.path.isfile(shared.path_from_root('src', 'library_' + library_name)):
+ elif library_name.endswith('.js') and os.path.isfile(path_from_root('src', 'library_' + library_name)):
2010
library_files += ['library_' + library_name]
2011
else:
2012
if Settings.ERROR_ON_MISSING_LIBRARIES:
0 commit comments