From 3d79575f035041cef59845d69cc44b28dad48f5e Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Wed, 3 Aug 2016 18:33:47 +0300 Subject: [PATCH] Fixes --- Makefile | 1 - OpenWRT/Makefile | 2 +- OpenWRT/build.sh | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4bdb57f..25aa0b7 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,6 @@ PREFIX = $(DESTDIR)/opt/CronosAgent ifeq ($(OS), Linux) FLAGS += -rdynamic - LIBRARIES += rt ifeq ($(USE_OPENSSL), yes) FLAGS += -DUSE_OPENSSL DEPENDENCIES += openssl diff --git a/OpenWRT/Makefile b/OpenWRT/Makefile index 87bd805..4b49357 100644 --- a/OpenWRT/Makefile +++ b/OpenWRT/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cronosagent -PKG_VERSION:=$(shell grep -o -E '[0-9]+' source/Version.h) +PKG_VERSION:=$(shell grep -o -E '[0-9]+' $(CURDIR)/source/Version.h) PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DEPENDS:= X_SOURCE_DIR:=$(CURDIR)/source diff --git a/OpenWRT/build.sh b/OpenWRT/build.sh index 0336b1c..cb52553 100755 --- a/OpenWRT/build.sh +++ b/OpenWRT/build.sh @@ -39,7 +39,7 @@ then fi # Build package -make package/$PACKAGE/compile V=99 2>&1 | tee $PROJECT/../build.log | grep -i error +make package/$PACKAGE/compile V=ws 2>&1 | tee $PROJECT/../build.log | grep -i error # Copy built packages find bin -name ${PACKAGE}*.ipk | xargs -l -I {} mv {} $PROJECT/..