4c8a065e7f
Numerous changes since last FreeBSD port version. See CHANGELOG from distfile for details. PR: 152338 Submitted by: Charlie Kester corky1951@comcast.net (maintainer) Approved by: itetcu
22 lines
651 B
Bash
22 lines
651 B
Bash
--- ./scripts/endianess.sh.orig 2009-06-01 07:55:28.000000000 -0700
|
|
+++ ./scripts/endianess.sh 2010-11-17 11:06:07.000000000 -0800
|
|
@@ -1,16 +1,13 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
|
|
# When cross compiling, you may put cross compiler directory
|
|
# in PATH before native gcc (aka spoofing), or you may set CC
|
|
# to exact name of cross compiler:
|
|
# CC=/opt/ppc_gcc/bin/gcc endianess
|
|
|
|
-# x86 and friends are considerd LITTLE endian, all others are BIG
|
|
-a=`${CC:-gcc} -v 2>&1 | grep Target`
|
|
-[ $? -ne 0 ] && exit 1
|
|
-#echo $a
|
|
+a=`sysctl -n hw.byteorder`
|
|
|
|
-if [ "${a/86/}" != "$a" ]; then
|
|
+if [ "${a}" == "1234" ]; then
|
|
echo LITTLE
|
|
else
|
|
echo BIG
|