summaryrefslogtreecommitdiff
path: root/package/ppp/patches/010-use_target_for_configuration.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/ppp/patches/010-use_target_for_configuration.patch')
-rw-r--r--package/ppp/patches/010-use_target_for_configuration.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/ppp/patches/010-use_target_for_configuration.patch b/package/ppp/patches/010-use_target_for_configuration.patch
new file mode 100644
index 000000000..0b804694b
--- /dev/null
+++ b/package/ppp/patches/010-use_target_for_configuration.patch
@@ -0,0 +1,20 @@
+$Id$
+
+ Use values exported from $(TOPDIR)/rules.mk for determining
+ the target system instead of the host configuration, d'oh
+
+--- ppp-2.4.3/configure.orig Sat Nov 6 11:36:32 2004
++++ ppp-2.4.3/configure Sun Jun 18 23:40:46 2006
+@@ -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"
+