From: Khem Raj Date: Thu, 4 Jan 2018 22:59:00 +0000 (+0100) Subject: automake: Add default libtool_tag to cppasm X-Git-Tag: v1.16~14 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=dc67b18d6648899ee284b66ca1529c47495672ea;p=thirdparty%2Fautomake.git automake: Add default libtool_tag to cppasm * bin/automake.in (register_language): Define default libtool tag to be CC since CPPASCOMPILE is using CC to call assembler. Copyright-paperwork-exempt: yes --- diff --git a/bin/automake.in b/bin/automake.in index 713a4b770..16fb45182 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -892,6 +892,7 @@ register_language ('name' => 'cppasm', 'compile' => "\$(CCAS) @cpplike_flags \$(AM_CCASFLAGS) \$(CCASFLAGS)", 'ccer' => 'CPPAS', 'compiler' => 'CPPASCOMPILE', + 'libtool_tag' => 'CC', 'compile_flag' => '-c', 'output_flag' => '-o', 'extensions' => ['.S', '.sx']);