]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Added a patch to bash.
authorStefan Schantl <Stevee@ipfire.org>
Wed, 13 May 2009 11:44:07 +0000 (13:44 +0200)
committerStefan Schantl <Stevee@ipfire.org>
Wed, 13 May 2009 11:44:07 +0000 (13:44 +0200)
This patch fixes various reportded issures. It is the latest posted
patch from linuxfromscratch.org.

lfs/bash

index fc4b3f7942602bcd6ae5b977c9bd3ab9b5fc2308..7b2c3489ffb668fef150ef4b8f3860010185f791 100644 (file)
--- a/lfs/bash
+++ b/lfs/bash
@@ -60,6 +60,7 @@ endef
 
 objects = $(DL_FILE) \
        $(THISAPP)-rng.patch \
+       $(THISAPP)-fixes-1.patch \
        #$(THISAPP)-arc4random-1.patch
 
 download: $(objects)
@@ -82,6 +83,10 @@ $(objects):
 $(OBJECT): $(objects)
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
+       
+       # This patch fixes various reportded issures. It is the latest posted
+       # patch from linuxfromscratch.org.
+       cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-fixes-1.patch  
 
        # This patch modifies Bash to use /dev/urandom (settable with
        # --with-randomdev=) for $RANDOM, instead of getpid() and gettimeofday().