HTML5: Fix build regression from 995eddf714

I forgot to remote the `-o` flag previously with `emcc` instead of `emar`.
This commit is contained in:
Rémi Verschelde 2020-08-15 13:41:44 +02:00
parent a5d7fc4746
commit 07bf2467e3

View File

@ -50,7 +50,6 @@ def configure(env):
env['CC'] = em_path + '/emcc'
env['CXX'] = em_path + '/emcc'
env['AR'] = em_path + "/emar"
env['ARFLAGS'] = "-o"
env['RANLIB'] = em_path + "/emranlib"
env['OBJSUFFIX'] = '.bc'