fix dhcp build on osx

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6797 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-04-01 15:26:01 +00:00
parent 927f62402a
commit 399dc08981
2 changed files with 28 additions and 0 deletions

View File

@ -43,6 +43,9 @@ endef
define Build/Configure
# it's not GNU autoconf stuff
(cd $(PKG_BUILD_DIR) ; \
UNAME_S=Linux \
UNAME_M=$(ARCH) \
UNAME_R=2.4.34 \
./configure \
--copts "$(TARGET_CFLAGS)" \
linux-2.2 \
@ -50,6 +53,9 @@ define Build/Configure
endef
define Build/Compile
UNAME_S=Linux \
UNAME_M=$(ARCH) \
UNAME_R=2.4.34 \
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
DESTDIR="$(PKG_INSTALL_DIR)" \

View File

@ -0,0 +1,22 @@
--- dhcp.old/configure 2007-04-01 17:16:14.000000000 +0200
+++ dhcp.dev/configure 2007-04-01 17:16:54.000000000 +0200
@@ -26,8 +26,8 @@
shift
done
-uname=`uname -s`
-machine=`uname -m`
+uname=${UNAME_S:-`uname -s`}
+machine=${UNAME_M:-`uname -m`}
if [ "$sysname" = "" ]; then
case $uname in
@@ -92,7 +92,7 @@
fi
fi;;
Linux)
- release=`uname -r`
+ release=${UNAME_R:-`uname -r`}
minor=`echo $release |sed -e 's/[0-9]*\.\([0-9][0-9]*\)\(\..*\)*$/\1/'`
major=`echo $release |sed -e 's/\([0-9][0-9]*\)\..*$/\1/'`