diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-27 17:33:45 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-27 17:33:45 +0000 |
commit | 6e30a22b8713210e0a659e31366a3d5d1ec70c39 (patch) | |
tree | 18dcf00611f8c6ed09e17d7965e9b88578e2be28 /package/ppp/Makefile | |
parent | a6cb7e0b3cce549f26edabdd65f59e4611d748dc (diff) |
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/Makefile')
-rw-r--r-- | package/ppp/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/ppp/Makefile b/package/ppp/Makefile index 680076857e..b5a317bd03 100644 --- a/package/ppp/Makefile +++ b/package/ppp/Makefile @@ -23,6 +23,7 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install PKG_BUILDDEP:=libpcap linux-atm include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/kernel.mk define Package/ppp/Default SECTION:=net @@ -91,6 +92,14 @@ define Package/pppstats This package contains an utility to report PPP statistics. endef +define Build/Configure +$(call Build/Configure/Default,, \ + UNAME_S="Linux" \ + UNAME_R="$(LINUX_VERSION)" \ + UNAME_M="$(ARCH)" \ +) +endef + define Build/Compile rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR)/usr |