summaryrefslogtreecommitdiffstats
path: root/sys-apps/kbd/files/kbd-1.12-xcompile.patch
blob: 985dbadc117b3b6582f9ac8488e84a29e86aa948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
this shit is wrong, but so was original ... this needs to be
rewritten so that $HOST_ARCH/$TARGET_ARCH aren't even needed ...

--- configure
+++ configure
@@ -129,8 +129,13 @@
 #
 # 0. Figure out architecture (one of i386, alpha, sparc, arm, m68k, mips)
 #
-ARCH=`uname -m | sed s/i.86/i386/`
-echo "ARCH=$ARCH" >> make_include
+HOST_ARCH=`uname -m`
+TARGET_ARCH=`$CC -dumpmachine | awk -F- '{print $1}'`
+# Don't allow ARCH="sparc" for sparc64 targets with 32-bit userland
+if (test "$HOST_ARCH" = "sparc64" && test "$TARGET_ARCH" = "sparc") ; then
+	TARGET_ARCH="sparc64"
+fi
+echo "ARCH=${TARGET_ARCH}" | sed -e 's:i.86:i386:' >> make_include
 
 #
 # 1. Do we have <locale.h>?