fix extra control files for packages containing "." and allow different conffiles for multiple packages built from the same directory
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3985 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
d0ebac86e0
commit
24b125f25c
|
@ -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