mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-13 22:22:13 +00:00
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 lines
419 B
Makefile
14 lines
419 B
Makefile
################################################################################
|
|
#
|
|
# libcue
|
|
#
|
|
################################################################################
|
|
|
|
LIBCUE_VERSION = 1.4.0
|
|
LIBCUE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/libcue
|
|
LIBCUE_SOURCE = libcue-$(LIBCUE_VERSION).tar.bz2
|
|
LIBCUE_DEPENDENCIES = flex
|
|
LIBCUE_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|