diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-06-16 10:51:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-06-16 10:51:16 +0000 |
commit | 278add2ab11065677cc56d72c64904abb594a81d (patch) | |
tree | bf1bcf52d1c5b40ede1296287fdc6333dc3cd85c | |
parent | 351a2ec15fa0855b2dc29dfbb62113f71e4e6a76 (diff) | |
download | upstream-278add2ab11065677cc56d72c64904abb594a81d.tar.gz upstream-278add2ab11065677cc56d72c64904abb594a81d.tar.bz2 upstream-278add2ab11065677cc56d72c64904abb594a81d.zip |
opkg: fix duplicate check_signature line for smime variant (#19863)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45999
-rw-r--r-- | package/system/opkg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile index d313c442dd..d38ed52314 100644 --- a/package/system/opkg/Makefile +++ b/package/system/opkg/Makefile @@ -112,9 +112,6 @@ define Package/opkg/Default/install $(INSTALL_DIR) $(1)/bin $(INSTALL_DIR) $(1)/etc $(INSTALL_DATA) ./files/opkg$(2).conf $(1)/etc/opkg.conf - ifneq ($(CONFIG_SIGNED_PACKAGES),) - echo "option check_signature 1" >> $(1)/etc/opkg.conf - endif $(call FeedSourcesAppend,$(1)/etc/opkg.conf) $(VERSION_SED) $(1)/etc/opkg.conf $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg @@ -122,6 +119,9 @@ endef define Package/opkg/install $(call Package/opkg/Default/install,$(1),) + ifneq ($(CONFIG_SIGNED_PACKAGES),) + echo "option check_signature 1" >> $(1)/etc/opkg.conf + endif mkdir $(1)/usr/sbin $(INSTALL_BIN) ./files/opkg-key $(1)/usr/sbin/ endef |