0e4d25ff0f
Finally get rid of all := used for variable definitions in packages, as we suggest in our manual and during the review of new packages. While I was at it, I also sometimes added a few missing new lines between the header and the first variable definition. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
21 lines
557 B
Makefile
21 lines
557 B
Makefile
#############################################################
|
|
#
|
|
# libtool
|
|
#
|
|
#############################################################
|
|
LIBTOOL_VERSION = 2.2.10
|
|
LIBTOOL_SOURCE = libtool-$(LIBTOOL_VERSION).tar.gz
|
|
LIBTOOL_SITE = $(BR2_GNU_MIRROR)/libtool
|
|
LIBTOOL_INSTALL_STAGING = YES
|
|
LIBTOOL_LICENSE = GPLv2+
|
|
LIBTOOL_LICENSE_FILES = COPYING
|
|
|
|
HOST_LIBTOOL_LIBTOOL_PATCH = NO
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
# variables used by other packages
|
|
LIBTOOL = $(HOST_DIR)/usr/bin/libtool
|
|
LIBTOOLIZE = $(HOST_DIR)/usr/bin/libtoolize
|