Fix double-definition of jsc_pcre_default_tables.

The generated file chartables.c was being both explicitly #included inside
of pcre_tables.cpp and also added to LOCAL_GENERATED_SOURCES. This lead to
a duplicate symbol definition.

The reason this ever worked was that the Android build system
accidentally ignored ".c" files in  LOCAL_GENERATED_SOURCES. Now that the
.c files are being compiled the problem is exposed.

Fixed by simply not adding chartables.c to LOCAL_GENERATED_SOURCES.
1 file changed