Updated usb_modeswitch (1.1.3).

Added udev usb_modeswitch data.
Added tcl (needed by udev usb_modeswitch database).
This commit is contained in:
Arne Fitzenreiter
2010-08-14 22:35:38 +02:00
parent c5fdda6df0
commit d1c956e88e
7 changed files with 952 additions and 2 deletions

13
lfs/tcl
View File

@@ -30,7 +30,12 @@ THISAPP = tcl$(VER)
DL_FILE = $(THISAPP)-src.tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
ifeq "$(LFS_PASS)" "toolchain"
TARGET = $(DIR_INFO)/$(THISAPP)-tools
else
TARGET = $(DIR_INFO)/$(THISAPP)
endif
###############################################################################
# Top-level Rules
@@ -70,10 +75,18 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
ifeq "$(LFS_PASS)" "toolchain"
cd $(DIR_APP)/unix && ./configure --prefix=/tools --disable-nls
else
cd $(DIR_APP)/unix && ./configure --prefix=/usr --disable-nls
endif
cd $(DIR_APP)/unix && make $(MAKETUNING)
cd $(DIR_APP)/unix && make install
ifeq "$(LFS_PASS)" "toolchain"
cd $(DIR_APP)/unix && make install-private-headers
ln -sf tclsh8.4 /tools/bin/tclsh
else
ln -sf tclsh8.4 /usr/bin/tclsh
endif
@rm -rf $(DIR_APP)
@$(POSTBUILD)