mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-01 13:49:03 +03: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>
22 lines
503 B
Makefile
22 lines
503 B
Makefile
#############################################################
|
|
#
|
|
# dash
|
|
#
|
|
#############################################################
|
|
|
|
DASH_VERSION = 0.5.7
|
|
DASH_SOURCE = dash_$(DASH_VERSION).orig.tar.gz
|
|
DASH_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/d/dash
|
|
DASH_PATCH = dash_$(DASH_VERSION)-2.diff.gz
|
|
|
|
define DASH_INSTALL_TARGET_CMDS
|
|
cp -a $(@D)/src/dash $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
define DASH_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
rm -f $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|