From: Stefan Schantl Date: Wed, 13 May 2009 11:44:07 +0000 (+0200) Subject: Added a patch to bash. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f9028f98043622cbadbbc1acbde886edd2574b2;p=ipfire-3.x.git Added a patch to bash. This patch fixes various reportded issures. It is the latest posted patch from linuxfromscratch.org. --- diff --git a/lfs/bash b/lfs/bash index fc4b3f794..7b2c3489f 100644 --- 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().