mirror of https://github.com/hak5/openwrt.git
fix extra control files for packages containing "." and allow different conffiles for multiple packages built from the same directory
SVN-Revision: 3985lede-17.01
parent
735be760e3
commit
68b9a0b76b
|
@ -78,9 +78,9 @@ define Package/Default
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define BuildIPKGVariable
|
define BuildIPKGVariable
|
||||||
pkg_$(subst -,_,$(1))_$(2) = $$(Package/$(1)/$(2))
|
pkg_$(subst .,_,$(subst -,_,$(1)))_$(2) = $$(Package/$(1)/$(2))
|
||||||
export pkg_$(subst -,_,$(1))_$(2)
|
export pkg_$(subst .,_,$(subst -,_,$(1))_$(2))
|
||||||
COMMANDS += if [ -n "$$$$$$$$pkg_$(subst -,_,$(1))_$(2)" ]; then echo "$$$$$$$$pkg_$(subst -,_,$(1))_$(2)" > $(2); fi;
|
$(1)_COMMANDS += if [ -n "$$$$$$$$pkg_$(subst .,_,$(subst -,_,$(1)))_$(2)" ]; then echo "$$$$$$$$pkg_$(subst .,_,$(subst -,_,$(1)))_$(2)" > $(2); fi;
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define BuildPackage
|
define BuildPackage
|
||||||
|
@ -175,7 +175,7 @@ define BuildPackage
|
||||||
echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
|
echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
|
||||||
chmod 644 $$(IDIR_$(1))/CONTROL/control
|
chmod 644 $$(IDIR_$(1))/CONTROL/control
|
||||||
(cd $$(IDIR_$(1))/CONTROL; \
|
(cd $$(IDIR_$(1))/CONTROL; \
|
||||||
$(COMMANDS) \
|
$($(1)_COMMANDS) \
|
||||||
)
|
)
|
||||||
|
|
||||||
$$(IPKG_$(1)): $$(IDIR_$(1))/CONTROL/control $(PKG_BUILD_DIR)/.built
|
$$(IPKG_$(1)): $$(IDIR_$(1))/CONTROL/control $(PKG_BUILD_DIR)/.built
|
||||||
|
|
Loading…
Reference in New Issue