diff options
Diffstat (limited to 'sys-apps/baselayout/files/baselayout-2.0.0_alpha2-kver.patch')
-rw-r--r-- | sys-apps/baselayout/files/baselayout-2.0.0_alpha2-kver.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sys-apps/baselayout/files/baselayout-2.0.0_alpha2-kver.patch b/sys-apps/baselayout/files/baselayout-2.0.0_alpha2-kver.patch deleted file mode 100644 index e7f73be59095..000000000000 --- a/sys-apps/baselayout/files/baselayout-2.0.0_alpha2-kver.patch +++ /dev/null @@ -1,21 +0,0 @@ -Index: sh/functions.sh -=================================================================== ---- sh/functions.sh (revision 2687) -+++ sh/functions.sh (working copy) -@@ -104,11 +104,12 @@ - KV_to_int() { - [ -z $1 ] && return 1 - -- local KV_MAJOR=${1%%.*} -- local x=${1#*.} -+ local x=${1%%-*} -+ local KV_MAJOR=${x%%.*} -+ x=${x#*.} - local KV_MINOR=${x%%.*} -- x=${1#*.*.} -- local KV_MICRO=${x%%-*} -+ x=${x#*.} -+ local KV_MICRO=${x%%.*} - local KV_int=$((${KV_MAJOR} * 65536 + ${KV_MINOR} * 256 + ${KV_MICRO} )) - - # We make version 2.2.0 the minimum version we will handle as |