4
Fork 0
This commit is contained in:
Artem Prilutskiy 2016-08-03 18:33:47 +03:00
parent 088035955e
commit 3d79575f03
3 changed files with 2 additions and 3 deletions

View file

@ -7,7 +7,6 @@ PREFIX = $(DESTDIR)/opt/CronosAgent
ifeq ($(OS), Linux)
FLAGS += -rdynamic
LIBRARIES += rt
ifeq ($(USE_OPENSSL), yes)
FLAGS += -DUSE_OPENSSL
DEPENDENCIES += openssl

View file

@ -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

View file

@ -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/..