summaryrefslogtreecommitdiffstats
path: root/package/librpc/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-06-08 15:10:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-06-08 15:10:18 +0000
commit7efa150cb414a635aa56cd1475d83eb67d1c6cd5 (patch)
treeeb7cdfaea9fb18f1acacff5b6d40edf4d76f9d02 /package/librpc/Makefile
parent15a1f9e148521a0b468492d03bdeae56b4d941d4 (diff)
make librpc compatible with eglibc, unconditionally enable it for packages that need rpc support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32129 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/librpc/Makefile')
-rw-r--r--package/librpc/Makefile36
1 files changed, 3 insertions, 33 deletions
diff --git a/package/librpc/Makefile b/package/librpc/Makefile
index 5a4692116..34cedbb4e 100644
--- a/package/librpc/Makefile
+++ b/package/librpc/Makefile
@@ -9,18 +9,7 @@ PKG_SOURCE_URL:=git://nbd.name/uclibc-rpc.git
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=0a2179bbc0844928f2a0ec01dba93d9b5d6d41a7
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
-
-ifndef CONFIG_NATIVE_TOOLCHAIN
- ifndef CONFIG_EXTERNAL_TOOLCHAIN
- ifdef CONFIG_USE_UCLIBC
- BUILD_LIBRPC=1
- endif
- endif
-endif
-
-ifdef BUILD_LIBRPC
- CMAKE_INSTALL:=1
-endif
+CMAKE_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
@@ -29,30 +18,11 @@ define Package/librpc
SECTION:=libs
CATEGORY:=Libraries
TITLE:=uClibc RPC library
- MDEPENDS:=@USE_UCLIBC
endef
-ifdef BUILD_LIBRPC
- define Package/librpc/install
+define Package/librpc/install
$(INSTALL_DIR) $(1)/lib/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/librpc.so $(1)/lib/
- endef
-else
- define Build/Prepare
- endef
-
- define Build/Configure
- endef
-
- define Build/Compile
- endef
-
- define Build/Install
- endef
-
- define Package/librpc/install
- true
- endef
-endif
+endef
$(eval $(call BuildPackage,librpc))