Adding debian version 5.2.37-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
fa1b3d3922
commit
fc8a52c443
59 changed files with 8007 additions and 0 deletions
28
debian/patches/bash-aliases-repeat.diff
vendored
Normal file
28
debian/patches/bash-aliases-repeat.diff
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
# DP: Fix bug in Bash_aliases example.
|
||||
|
||||
--- a/examples/startup-files/Bash_aliases
|
||||
+++ b/examples/startup-files/Bash_aliases
|
||||
@@ -41,20 +41,20 @@
|
||||
{
|
||||
local count="$1" i;
|
||||
shift;
|
||||
- for i in $(seq 1 "$count");
|
||||
+ for i in $(_seq 1 "$count");
|
||||
do
|
||||
eval "$@";
|
||||
done
|
||||
}
|
||||
|
||||
# Subfunction needed by `repeat'.
|
||||
-seq ()
|
||||
+_seq ()
|
||||
{
|
||||
local lower upper output;
|
||||
lower=$1 upper=$2;
|
||||
|
||||
if [ $lower -ge $upper ]; then return; fi
|
||||
- while [ $lower -le $upper ];
|
||||
+ while [ $lower -lt $upper ];
|
||||
do
|
||||
echo -n "$lower "
|
||||
lower=$(($lower + 1))
|
Loading…
Add table
Add a link
Reference in a new issue