b6c0b3b42a
This fixes below build error when executing "make tcl-dirclean; make tcl-rebuild". ln -s tclsh8.4 /opt/test/br-x86/buildroot/output/target/usr/bin/tclsh ln: failed to create symbolic link '/opt/test/br-x86/buildroot/output/target/usr/bin/tclsh': File exists make: *** [/opt/test/br-x86/buildroot/output/build/tcl-8.4.19/.stamp_target_installed] Error 1 Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# tcl
|
|
#
|
|
################################################################################
|
|
|
|
TCL_VERSION_MAJOR = 8.4
|
|
TCL_VERSION_MINOR = 19
|
|
TCL_VERSION = $(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
|
|
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
|
|
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION)
|
|
TCL_LICENSE = tcl license
|
|
TCL_LICENSE_FILES = license.terms
|
|
TCL_SUBDIR = unix
|
|
TCL_INSTALL_STAGING = YES
|
|
TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-framework
|
|
|
|
HOST_TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-framework
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL_DEL_ENCODINGS),y)
|
|
define TCL_REMOVE_ENCODINGS
|
|
rm -rf $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/encoding/*
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_ENCODINGS
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
|
define TCL_REMOVE_TCLSH
|
|
rm -f $(TARGET_DIR)/usr/bin/tclsh$(TCL_VERSION_MAJOR)
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_TCLSH
|
|
else
|
|
define TCL_SYMLINK_TCLSH
|
|
ln -sf tclsh$(TCL_VERSION_MAJOR) $(TARGET_DIR)/usr/bin/tclsh
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_SYMLINK_TCLSH
|
|
endif
|
|
|
|
# library get installed read only, so strip fails
|
|
define TCL_FIXUP_RO_LIB
|
|
chmod +w $(TARGET_DIR)/usr/lib/libtcl*
|
|
endef
|
|
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_FIXUP_RO_LIB
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|