From: ms Date: Thu, 2 Nov 2006 13:08:47 +0000 (+0000) Subject: Buildfixes... X-Git-Tag: v2.3-beta1~918 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=b1221488beb94167f8a953d8853efcefd286b678;hp=67c31465de402e1ecce28c6d0f9754f0ad45e8fb Buildfixes... git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@336 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/lfs/bind b/lfs/bind index 6ebe3e0860..1dbdbec416 100644 --- a/lfs/bind +++ b/lfs/bind @@ -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) diff --git a/lfs/slang b/lfs/slang index 78d079435f..1da31b8998 100644 --- a/lfs/slang +++ b/lfs/slang @@ -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)