1
0
mirror of synced 2026-01-28 04:27:38 +00:00

2007-07-22 21:13:05 by steve

Patch [1/2] from Andrew Sutherland - Integer fixups for dash.
This commit is contained in:
steve
2007-07-22 21:13:17 +00:00
parent c6093b8f95
commit bf8b212a24
8 changed files with 10 additions and 7 deletions

View File

@@ -52,6 +52,9 @@ Contributions
Henning Sprang <henning_sprang [at] de.gmx>
- Many suggestions and useful Debian bug reports.
Andrew Sutherland <andrew [at] com.theptrgroup>
- Fixups for dash/Ubuntu.
Gergely Tamas <dice [at] hu.kfki.mfa>
- Added patch to make initrd setup optional.

View File

@@ -59,7 +59,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -59,7 +59,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -56,7 +56,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -55,7 +55,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -56,7 +56,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -59,7 +59,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"

View File

@@ -56,7 +56,7 @@ for part in `seq 1 ${NUMPARTITIONS}`; do
x=0
for partdata in ${PARTITION}; do
eval "partdata${x}=\"${partdata}\""
x=$(( x+1 ))
x=$(( $x+1 ))
done
IFS="${OLDIFS}"