aboutsummaryrefslogtreecommitdiff
path: root/tools/shared.py
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2012-04-17 16:12:56 -0400
committerAlon Zakai <alonzakai@gmail.com>2012-07-13 15:38:35 -0700
commitc0b7050981a4033caf2cdca2a94e84270b4997e1 (patch)
treeb11c661946fdf582604af216674eb8a059e3f287 /tools/shared.py
parent6dabaa9fa28660ef3c1d8502b5652701aa352880 (diff)
Disable setting LIBTOOL
emlibtool is a big TODO right now. The only reason this was not causing problems is that autotools-generated configure does NOT get libtool from environment variables.
Diffstat (limited to 'tools/shared.py')
-rw-r--r--tools/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py
index a9f663ac..c09db358 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -425,7 +425,7 @@ class Building:
env['CXX'] = EMXX if not WINDOWS else 'python %r' % EMXX
env['AR'] = EMAR if not WINDOWS else 'python %r' % EMAR
env['RANLIB'] = EMRANLIB if not WINDOWS else 'python %r' % EMRANLIB
- env['LIBTOOL'] = EMLIBTOOL if not WINDOWS else 'python %r' % EMLIBTOOL
+ #env['LIBTOOL'] = EMLIBTOOL if not WINDOWS else 'python %r' % EMLIBTOOL
env['EMMAKEN_COMPILER'] = Building.COMPILER
env['EMSCRIPTEN_TOOLS'] = path_from_root('tools')
env['CFLAGS'] = env['EMMAKEN_CFLAGS'] = ' '.join(Building.COMPILER_TEST_OPTS)