diff options
Diffstat (limited to 'package/ppp/patches/patch-configure')
-rw-r--r-- | package/ppp/patches/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/ppp/patches/patch-configure b/package/ppp/patches/patch-configure new file mode 100644 index 000000000..4ec084e2e --- /dev/null +++ b/package/ppp/patches/patch-configure @@ -0,0 +1,15 @@ +--- ppp-2.4.4.orig/configure 2005-07-09 02:23:05.000000000 +0200 ++++ ppp-2.4.4/configure 2009-06-05 19:12:00.000000000 +0200 +@@ -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" + |