Fix problem with ASM compilation

When compiling C++ files along with C, libtool would complain about
the --tag missing, even though CC should be the default.
This commit is contained in:
Ari Koivula 2016-06-06 15:42:26 +03:00
parent 7947b18649
commit fe71638a96

View file

@ -208,5 +208,5 @@ yasm_verbose_ = $(yasm_verbose_@AM_DEFAULT_V@)
yasm_verbose_0 = @echo " YASM " $@;
.asm.lo:
$(yasm_verbose)$(LIBTOOL) --mode=compile $(YASM) -I$(srcdir)/extras $(ASFLAGS) $< -o $@ -prefer-non-pic 1>/dev/null
$(yasm_verbose)$(LIBTOOL) --mode=compile --tag=CC $(YASM) -I$(srcdir)/extras $(ASFLAGS) $< -o $@ -prefer-non-pic 1>/dev/null