diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-27 18:27:51 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2022-02-27 22:29:04 -0600 |
commit | cac6007ddd157ba79f676e47458031a19b1ba0e8 (patch) | |
tree | a67900b32e72cebddfd3ffcf4f9f45214c332c2e /network | |
parent | fc462f2320a0f3e1a89a56041b381f3f7fbfeb1b (diff) |
network/mumble-server: Remove NUMJOBS.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/mumble-server/mumble-server.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/network/mumble-server/mumble-server.SlackBuild b/network/mumble-server/mumble-server.SlackBuild index 01b55fbdfaf38..81c7be7467899 100644 --- a/network/mumble-server/mumble-server.SlackBuild +++ b/network/mumble-server/mumble-server.SlackBuild @@ -31,7 +31,6 @@ VERSION=${VERSION:-1.4.230} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -NUMJOBS=${NUMJOBS:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -71,8 +70,8 @@ if ! getent passwd $MURMUR_USER; then exit 1 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" @@ -115,7 +114,7 @@ cmake \ -Dice=OFF \ -Dzeroconf=OFF .. -make -j${NUMJOBS} +make make install DESTDIR=$PKG ) |