Buildfixes...

git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@336 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2006-11-02 13:08:47 +00:00
parent 67c31465de
commit b1221488be
2 changed files with 8 additions and 8 deletions

View File

@@ -73,12 +73,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls
cd $(DIR_APP) && make -C lib/dns $(MAKETUNING)
cd $(DIR_APP) && make -C lib/isc $(MAKETUNING)
cd $(DIR_APP) && make -C lib/bind9 $(MAKETUNING)
cd $(DIR_APP) && make -C lib/isccfg $(MAKETUNING)
cd $(DIR_APP) && make -C lib/lwres $(MAKETUNING)
cd $(DIR_APP) && make -C bin/dig $(MAKETUNING)
cd $(DIR_APP) && make -C lib/dns
cd $(DIR_APP) && make -C lib/isc
cd $(DIR_APP) && make -C lib/bind9
cd $(DIR_APP) && make -C lib/isccfg
cd $(DIR_APP) && make -C lib/lwres
cd $(DIR_APP) && make -C bin/dig
cd $(DIR_APP) && make -C bin/dig install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -80,13 +80,13 @@ ifeq "$(LFS_PASS)" "install"
-mkdir -p /install/lib
cd $(DIR_APP) && ./configure --prefix=""
cd $(DIR_APP) && make $(MAKETUNING) elf
cd $(DIR_APP)/src && make $(MAKETUNING) install-elf DESTDIR="/opt/$(MACHINE)-uClibc"
cd $(DIR_APP)/src && make install-elf DESTDIR="/opt/$(MACHINE)-uClibc"
rm -vf /opt/$(MACHINE)-uClibc/lib/libslang.so*
else
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make elf $(MAKETUNING)
cd $(DIR_APP) && make install-elf $(MAKETUNING)
cd $(DIR_APP) && make install-elf
cd $(DIR_APP) && chmod -v 755 /usr/lib/libslang.so.2.0.6
endif
@rm -rf $(DIR_APP)