diff options
author | Thomas Sowell | 2018-10-23 20:50:15 -0800 |
---|---|---|
committer | David Turner | 2018-10-25 04:20:51 +0100 |
commit | 016ddd4899da0878e8910707b3bb0d1301368424 (patch) | |
tree | 5cf6a6f58511b400cb03346ab04785cad4f74f30 /configure | |
parent | e7d23d2cd914fb66cd43bd2628af3fc2bc861e12 (diff) | |
download | scummvm-rg350-016ddd4899da0878e8910707b3bb0d1301368424.tar.gz scummvm-rg350-016ddd4899da0878e8910707b3bb0d1301368424.tar.bz2 scummvm-rg350-016ddd4899da0878e8910707b3bb0d1301368424.zip |
BUILD: Remove flags from translation cc_check
Remove $LDFLAGS and $CXXFLAGS from cc_check call in translation support
check. Both variables are redundant because they are already expanded
in cc_check, and expanding LDFLAGS twice causes duplicate symbol errors
for targets that include crt0.o in LDFLAGS.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5037,7 +5037,7 @@ else int main(void) { setlocale(LC_ALL, ""); return 0; } EOF _detectlang=no - cc_check $LDFLAGS $CXXFLAGS && _detectlang=yes + cc_check && _detectlang=yes fi define_in_config_h_if_yes $_detectlang 'USE_DETECTLANG' |