kumquat-buildroot/package/libva-utils/libva-utils.mk
Thomas Petazzoni 96d90ae4e7 package/libva-utils: drop _SOURCE variable which has the default value
Since commit b090794926
("package/libva-utils: bump to version 2.3.0"), the LIBVA_UTILS_SOURCE
variable has the default value of the <pkg>_SOURCE variable, so
check-package complains:

package/libva-utils/libva-utils.mk:8: remove default value of _SOURCE variable (http://nightly.buildroot.org/#generic-package-reference)

Let's fix this by dropping the now unneeded variable assignment.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-01-17 09:27:11 +01:00

22 lines
607 B
Makefile

################################################################################
#
# libva-utils
#
################################################################################
LIBVA_UTILS_VERSION = 2.3.0
LIBVA_UTILS_SITE = https://github.com/intel/libva-utils/archive/$(LIBVA_UTILS_VERSION)
LIBVA_UTILS_LICENSE = MIT
LIBVA_UTILS_LICENSE_FILES = COPYING
# 0001-check-ssp.patch
LIBVA_UTILS_AUTORECONF = YES
LIBVA_UTILS_DEPENDENCIES = host-pkgconf libva
define LIBVA_UTILS_CREATE_M4_DIR
@mkdir -p $(@D)/m4
endef
LIBVA_UTILS_POST_EXTRACT_HOOKS += LIBVA_UTILS_CREATE_M4_DIR
$(eval $(autotools-package))