1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 04:48:57 +03:00
openwrt-xburst/package/ppp/patches/010-use_target_for_configure.patch
nbd 6e30a22b87 fix ppp compile on osx
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4869 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-09-27 17:33:45 +00:00

21 lines
498 B
Diff

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"