forked from pool/glibc
e3888c4547
Various small fixes. OBS-URL: https://build.opensuse.org/request/show/75319 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=73
24 lines
498 B
Bash
24 lines
498 B
Bash
#!/bin/bash
|
|
# Copyright (c) 2003, 2004, 2011 SUSE Linux Products GmbH, Germany. All rights reserved.
|
|
#
|
|
# Authors: Thorsten Kukuk <kukuk@suse.de>
|
|
#
|
|
|
|
|
|
|
|
if [ `nice` -gt '9' ] ; then
|
|
echo "Don't modify nice for building glibc!"
|
|
exit 1
|
|
fi
|
|
|
|
# get kernel version
|
|
OFS="$IFS" ; IFS=".-" ; version=(`uname -r`) ; IFS="$OIFS"
|
|
if test ${version[0]} -lt 2 -o ${version[1]} -lt 6 -o ${version[2]} -lt 16 ; then
|
|
echo "FATAL: kernel too old, need kernel >= 2.6.16 for this package" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|
|
|