1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 12:27:51 +03:00
openwrt-xburst/package/ppp/patches/010-use_target_for_configure.patch
nbd b5cb1795de refresh all package patches in the buildroot using quilt
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7490 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-06-04 11:25:53 +00:00

22 lines
601 B
Diff

Use values exported from $(TOPDIR)/rules.mk for determining
the target system instead of the host configuration
Index: ppp-2.4.3/configure
===================================================================
--- ppp-2.4.3.orig/configure 2007-06-04 13:22:08.549555552 +0200
+++ ppp-2.4.3/configure 2007-06-04 13:22:08.618545064 +0200
@@ -8,9 +8,9 @@
# 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"