mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Improvements to libtool support.
Improvements to the libtool support in QEMU. Replace hard coded libtool in the infrastructure with $(LIBTOOL) and allow overriding the libtool binary used via the configure script. Reviewed-by: Andreas F=E4rber <andreas.faerber@web.de> Signed-off-by: Brad Smith <brad@comstyle.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2c993ec294
commit
3f53458137
4 changed files with 9 additions and 10 deletions
5
configure
vendored
5
configure
vendored
|
@ -225,6 +225,7 @@ cc="${CC-${cross_prefix}gcc}"
|
|||
ar="${AR-${cross_prefix}ar}"
|
||||
objcopy="${OBJCOPY-${cross_prefix}objcopy}"
|
||||
ld="${LD-${cross_prefix}ld}"
|
||||
libtool="${LIBTOOL-${cross_prefix}libtool}"
|
||||
strip="${STRIP-${cross_prefix}strip}"
|
||||
windres="${WINDRES-${cross_prefix}windres}"
|
||||
pkg_config="${PKG_CONFIG-${cross_prefix}pkg-config}"
|
||||
|
@ -1342,10 +1343,8 @@ fi
|
|||
##########################################
|
||||
# libtool probe
|
||||
|
||||
if ! has libtool; then
|
||||
if ! has $libtool; then
|
||||
libtool=
|
||||
else
|
||||
libtool=libtool
|
||||
fi
|
||||
|
||||
##########################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue