revert part of [6573] to keep the speedup of metadata scanning
SVN-Revision: 6574
This commit is contained in:
parent
8dc90ccc11
commit
b14f137a2e
1 changed files with 20 additions and 20 deletions
|
@ -14,25 +14,25 @@ ifneq ($(DUMP),)
|
|||
dumpinfo: dumpinfo-$(1)
|
||||
.SILENT: dumpinfo-$(1)
|
||||
dumpinfo-$(1): FORCE
|
||||
echo "Package: $(1)" ;
|
||||
$(if $(MENU),echo "Menu: $(MENU)")
|
||||
$(if $(SUBMENU),echo "Submenu: $(SUBMENU)")
|
||||
$(if $(SUBMENUDEP),echo "Submenu-Depends: $(SUBMENUDEP)")
|
||||
$(if $(DEFAULT),echo "Default: $(DEFAULT)")
|
||||
if [ "$$$$PREREQ_CHECK" = 1 ]; then echo "Prereq-Check: 1"; fi;
|
||||
echo "Version: $(VERSION)"
|
||||
echo "Depends: $(DEPENDS)"
|
||||
echo "Provides: $(PROVIDES)"
|
||||
echo "Build-Depends: $(PKG_BUILD_DEPENDS)"
|
||||
echo "Section: $(SECTION)"
|
||||
echo "Category: $(CATEGORY)"
|
||||
echo "Title: $(TITLE)"
|
||||
echo "Maintainer: $(MAINTAINER)"
|
||||
echo -n "Description: "
|
||||
getvar $(call shvar,Package/$(1)/description)
|
||||
$(if $(URL),echo;echo "$(URL)")
|
||||
echo "@@"
|
||||
$$(if $$(Package/$(1)/config),echo "Config: "; getvar $(call shvar,Package/$(1)/config); echo "@@")
|
||||
$(if $$(preconfig_$(1)),$$(preconfig_$(1)) echo "")
|
||||
@echo "Package: $(1)" ; \
|
||||
$(if $(MENU),echo "Menu: $(MENU)";) \
|
||||
$(if $(SUBMENU),echo "Submenu: $(SUBMENU)";) \
|
||||
$(if $(SUBMENUDEP),echo "Submenu-Depends: $(SUBMENUDEP)";) \
|
||||
$(if $(DEFAULT),echo "Default: $(DEFAULT)";) \
|
||||
if [ "$$$$PREREQ_CHECK" = 1 ]; then echo "Prereq-Check: 1"; fi; \
|
||||
echo "Version: $(VERSION)"; \
|
||||
echo "Depends: $(DEPENDS)"; \
|
||||
echo "Provides: $(PROVIDES)"; \
|
||||
echo "Build-Depends: $(PKG_BUILD_DEPENDS)"; \
|
||||
echo "Section: $(SECTION)"; \
|
||||
echo "Category: $(CATEGORY)"; \
|
||||
echo "Title: $(TITLE)"; \
|
||||
echo "Maintainer: $(MAINTAINER)"; \
|
||||
echo -n "Description: "; \
|
||||
getvar $(call shvar,Package/$(1)/description); \
|
||||
$(if $(URL),echo;echo "$(URL)";) \
|
||||
echo "@@" ; \
|
||||
$$(if $$(Package/$(1)/config),echo "Config: "; getvar $(call shvar,Package/$(1)/config); echo "@@"; ) \
|
||||
$$(if $$(preconfig_$(1)),$$(preconfig_$(1)) echo "")
|
||||
endef
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue