mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
network/avahi: Allow VERSION override, fix user/group detection.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
79fca13527
commit
8fcb5bd512
1 changed files with 6 additions and 6 deletions
|
@ -27,13 +27,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=avahi
|
||||
VERSION=0.6.31
|
||||
VERSION=${VERSION:-0.6.31}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -60,15 +60,15 @@ warn_accounts() {
|
|||
}
|
||||
|
||||
# Bail if user and/or group isn't valid on your system
|
||||
if ! grep -q "^avahi:" /etc/passwd; then
|
||||
if ! getent passwd avahi &>/dev/null; then
|
||||
warn_accounts
|
||||
fi
|
||||
if ! grep -q "^avahi:" /etc/group ; then
|
||||
if ! getent group avahi &>/dev/null; then
|
||||
warn_accounts
|
||||
fi
|
||||
|
||||
if [ "${ARCH}" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "${ARCH}" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
|
Loading…
Reference in a new issue