mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 06:22:12 +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
448 B
Makefile
14 lines
448 B
Makefile
#############################################################
|
|
#
|
|
# rdesktop
|
|
#
|
|
#############################################################
|
|
|
|
RDESKTOP_VERSION = 1.5.0
|
|
RDESKTOP_SOURCE = rdesktop-$(RDESKTOP_VERSION).tar.gz
|
|
RDESKTOP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/rdesktop/
|
|
RDESKTOP_DEPENDENCIES = openssl xlib_libX11 xlib_libXt
|
|
RDESKTOP_CONF_OPT = --with-openssl=$(STAGING_DIR)/usr
|
|
|
|
$(eval $(autotools-package))
|