From 4370407011ade35787de7aa386bf2c0bf0721699 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Wed, 3 Aug 2016 11:12:24 +0300 Subject: [PATCH] OpenWRT packages built successfuly --- OpenWRT/Makefile | 4 ++-- OpenWRT/build.sh | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/OpenWRT/Makefile b/OpenWRT/Makefile index b03a9dc..724bb31 100644 --- a/OpenWRT/Makefile +++ b/OpenWRT/Makefile @@ -24,9 +24,9 @@ define Package/cronosagent/description endef define Build/Prepare + echo $(X_SOURCE_DIR) mkdir -p $(PKG_BUILD_DIR) - $(CP) -R $(X_SOURCE_DIR)/*.h $(PKG_BUILD_DIR)/ - $(CP) -R $(X_SOURCE_DIR)/*.c $(PKG_BUILD_DIR)/ + $(CP) -R $(X_SOURCE_DIR)/* $(PKG_BUILD_DIR)/ endef #define Build/Compile diff --git a/OpenWRT/build.sh b/OpenWRT/build.sh index 0e0191a..861ca51 100755 --- a/OpenWRT/build.sh +++ b/OpenWRT/build.sh @@ -41,4 +41,7 @@ fi # Build package make package/$PACKAGE/compile V=99 2>&1 | tee $PROJECT/../build.log | grep -i error +# Copy built packages +find bin -name ${PACKAGE}*.ipk | xargs -I {} cp {} $PROJECT/.. + popd > /dev/null