0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
540 B
Makefile
16 lines
540 B
Makefile
################################################################################
|
|
#
|
|
# tcllib
|
|
#
|
|
################################################################################
|
|
|
|
TCLLIB_VERSION = 1.13
|
|
TCLLIB_SOURCE = tcllib-$(TCLLIB_VERSION).tar.bz2
|
|
TCLLIB_SITE = http://downloads.sourceforge.net/project/tcllib/tcllib/$(TCLLIB_VERSION)
|
|
TCLLIB_LICENSE = tcl license
|
|
TCLLIB_LICENSE_FILES = license.terms
|
|
TCLLIB_DEPENDENCIES = host-tcl
|
|
TCLLIB_CONF_ENV = ac_cv_path_tclsh="$(HOST_DIR)/bin/tclsh$(TCL_VERSION_MAJOR)"
|
|
|
|
$(eval $(autotools-package))
|