mirror of
https://github.com/chocolate-doom/buildscripts.git
synced 2024-11-24 21:02:17 +00:00
Remove .la files after installing libraries, to fix Windows
cross-compile. Subversion-branch: /buildscripts Subversion-revision: 2521
This commit is contained in:
parent
83df610728
commit
f48d71516b
1 changed files with 5 additions and 0 deletions
|
@ -175,6 +175,11 @@ build_module() {
|
|||
echo $INSTALL_MESSAGE
|
||||
$INSTALL_COMMAND make install || exit
|
||||
|
||||
# Remove any libtool .la files that were installed by the build - they
|
||||
# aren't needed and can cause build problems with dependency ordering
|
||||
# when cross-compiling to MingW.
|
||||
rm -f $INSTALL_DIR/lib/*.la
|
||||
|
||||
echo Build complete.
|
||||
echo
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue