ports/devel/kBuild/files/patch-kBuild_env.sh
Piotr Kubaj e8bbd1ec14 devel/kBuild: actually build for 64-bits on powerpc64
Due to using uname -m, the port was built for 32 bits.

Also enable on other architectures, it should build now.
2021-03-21 18:39:36 +00:00

17 lines
612 B
Bash

--- kBuild/env.sh.orig 2021-03-21 18:24:04 UTC
+++ kBuild/env.sh
@@ -327,12 +327,12 @@ if test -z "$KBUILD_HOST_ARCH"; then
fi
fi
if test -z "$KBUILD_HOST_ARCH"; then
- # Use uname -m or isainfo (lots of guesses here, please help clean this up...)
+ # Use uname -p or isainfo (lots of guesses here, please help clean this up...)
if test "$KBUILD_HOST" = "solaris"; then
KBUILD_HOST_ARCH=`isainfo | cut -f 1 -d ' '`
else
- KBUILD_HOST_ARCH=`uname -m`
+ KBUILD_HOST_ARCH=`uname -p`
fi
case "$KBUILD_HOST_ARCH" in
x86_64|AMD64|amd64|k8|k8l|k9|k10)