aboutsummaryrefslogtreecommitdiffstats
path: root/package/ppp/patches/010-use_target_for_configure.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-09-27 17:33:45 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-09-27 17:33:45 +0000
commitb021a87716ad252631516f4290677d69e0e02e93 (patch)
tree18dcf00611f8c6ed09e17d7965e9b88578e2be28 /package/ppp/patches/010-use_target_for_configure.patch
parent6064080971ebc81ea1e92d12cc2e5619997757b7 (diff)
downloadupstream-b021a87716ad252631516f4290677d69e0e02e93.tar.gz
upstream-b021a87716ad252631516f4290677d69e0e02e93.tar.bz2
upstream-b021a87716ad252631516f4290677d69e0e02e93.zip
fix ppp compile on osx
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4869 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ppp/patches/010-use_target_for_configure.patch')
-rw-r--r--package/ppp/patches/010-use_target_for_configure.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/ppp/patches/010-use_target_for_configure.patch b/package/ppp/patches/010-use_target_for_configure.patch
new file mode 100644
index 0000000000..56439a6122
--- /dev/null
+++ b/package/ppp/patches/010-use_target_for_configure.patch
@@ -0,0 +1,20 @@
+
+ Use values exported from $(TOPDIR)/rules.mk for determining
+ the target system instead of the host configuration
+
+--- 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"
+
+