2006-09-27 17:33:45 +00:00
|
|
|
|
|
|
|
Use values exported from $(TOPDIR)/rules.mk for determining
|
|
|
|
the target system instead of the host configuration
|
|
|
|
|
2009-05-21 10:49:21 +00:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
|
|
|
@@ -8,9 +8,9 @@ SYSCONF=/etc
|
2006-09-27 17:33:45 +00:00
|
|
|
# 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"
|
|
|
|
|