[OpenWrt-Devel] [PATCH 2/2] [RESEND] package/libs/polarssl: Fix package source variable name

openwrt at daniel.thecshore.com openwrt at daniel.thecshore.com
Tue Feb 16 02:40:17 EST 2016


From: Daniel Dickinson <openwrt at daniel.thecshore.com>

Second part to patch series with no comment to previous send.

The patch for preventing SDK from reconfiguring already built packages
uses SRC_PKG_NAME for source package name which conflicts with use of
that variable in polarssl Makefile, so fix polarssl variable be the
more aptly named PKG_SRC_NAME (that is name of package source file,
rather than name of source package).
---
 package/libs/polarssl/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libs/polarssl/Makefile b/package/libs/polarssl/Makefile
index 03e3252..9fe509b 100644
--- a/package/libs/polarssl/Makefile
+++ b/package/libs/polarssl/Makefile
@@ -8,16 +8,16 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=polarssl
-SRC_PKG_NAME:=mbedtls
+PKG_SRC_NAME:=mbedtls
 PKG_VERSION:=1.3.16
 PKG_RELEASE:=1
 PKG_USE_MIPS16:=0
 
-PKG_SOURCE:=$(SRC_PKG_NAME)-$(PKG_VERSION)-gpl.tgz
+PKG_SOURCE:=$(PKG_SRC_NAME)-$(PKG_VERSION)-gpl.tgz
 PKG_SOURCE_URL:=https://polarssl.org/download/
 PKG_MD5SUM:=f413146c177c52d4ad8f48015e2fb21dd3a029ca30a2ea000cbc4f9bd092c933
 
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(SRC_PKG_NAME)-$(PKG_VERSION)
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SRC_NAME)-$(PKG_VERSION)
 
 PKG_BUILD_PARALLEL:=1
 PKG_LICENSE:=GPL-2.0+
-- 
2.4.3
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel



More information about the openwrt-devel mailing list