Fixes
This commit is contained in:
parent
088035955e
commit
3d79575f03
3 changed files with 2 additions and 3 deletions
1
Makefile
1
Makefile
|
@ -7,7 +7,6 @@ PREFIX = $(DESTDIR)/opt/CronosAgent
|
||||||
|
|
||||||
ifeq ($(OS), Linux)
|
ifeq ($(OS), Linux)
|
||||||
FLAGS += -rdynamic
|
FLAGS += -rdynamic
|
||||||
LIBRARIES += rt
|
|
||||||
ifeq ($(USE_OPENSSL), yes)
|
ifeq ($(USE_OPENSSL), yes)
|
||||||
FLAGS += -DUSE_OPENSSL
|
FLAGS += -DUSE_OPENSSL
|
||||||
DEPENDENCIES += openssl
|
DEPENDENCIES += openssl
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=cronosagent
|
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_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_BUILD_DEPENDS:=
|
PKG_BUILD_DEPENDS:=
|
||||||
X_SOURCE_DIR:=$(CURDIR)/source
|
X_SOURCE_DIR:=$(CURDIR)/source
|
||||||
|
|
|
@ -39,7 +39,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build package
|
# 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
|
# Copy built packages
|
||||||
find bin -name ${PACKAGE}*.ipk | xargs -l -I {} mv {} $PROJECT/..
|
find bin -name ${PACKAGE}*.ipk | xargs -l -I {} mv {} $PROJECT/..
|
||||||
|
|
Loading…
Add table
Reference in a new issue