From: hcg Date: Fri, 28 Jan 2011 15:28:12 +0000 (+0000) Subject: [packages] cppunit: Install library and includes in staging dir X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=69bd70117eb3ebf167d943b87df07324192473ac;p=packages.git [packages] cppunit: Install library and includes in staging dir git-svn-id: svn://svn.openwrt.org/openwrt/packages@25202 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/devel/cppunit/Makefile b/devel/cppunit/Makefile index 5a73ba6ff..e23cf2454 100644 --- a/devel/cppunit/Makefile +++ b/devel/cppunit/Makefile @@ -34,6 +34,10 @@ define Build/InstallDev $(CP) $(PKG_BUILD_DIR)/include/cppunit/* $(1)/usr/include/cppunit/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_BUILD_DIR)/src/cppunit/.libs/libcppunit*so* $(1)/usr/lib/ + $(INSTALL_DIR) $(STAGING_DIR)/usr/include/cppunit + $(CP) $(PKG_BUILD_DIR)/include/cppunit/* $(STAGING_DIR)/usr/include/cppunit/ + $(INSTALL_DIR) $(STAGING_DIR)/usr/lib + $(CP) $(PKG_BUILD_DIR)/src/cppunit/.libs/libcppunit*so* $(STAGING_DIR)/usr/lib/ endef define Package/cppunit/install