blob: e185be0bea5eae5238b7d096aacdcbd90293832e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | 
	Use values exported from $(TOPDIR)/rules.mk for determining
	the target system instead of the host configuration
--- a/configure
+++ b/configure
@@ -8,9 +8,9 @@ SYSCONF=/etc
 #  if [ -d /NextApps ]; then
 #    system="NeXTStep"
 #  else
-  system=`uname -s`
-  release=`uname -r`
-  arch=`uname -m`
+  system=${UNAME_S:-`uname -s`}
+  release=${UNAME_R:-`uname -r`}
+  arch=${UNAME_M:-`uname -m`}
 #  fi
 state="unknown"
 
 |