summaryrefslogtreecommitdiffstats
path: root/rules/post/image_ipkg.make
diff options
context:
space:
mode:
authorCarsten Schlote <c.schlote@konzeptpark.de>2010-02-25 12:47:57 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-02-26 02:19:14 +0100
commit439c581900f66ae72b36182234104d154befe9ca (patch)
tree0a9a54cdff61d2f40f561290b3772755d8eccfa6 /rules/post/image_ipkg.make
parentf6c77ff8f0afd8b314705fc9adbefa40d78fd66d (diff)
downloadptxdist-439c581900f66ae72b36182234104d154befe9ca.tar.gz
ptxdist-439c581900f66ae72b36182234104d154befe9ca.tar.xz
[images] Creation of 'Packages', removed redirection to nil:
Removed redirection of all outputs to /dev/null. It really helps to see, what problems a script has. Simplifies debugging and error-tracking. Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'rules/post/image_ipkg.make')
-rw-r--r--rules/post/image_ipkg.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/post/image_ipkg.make b/rules/post/image_ipkg.make
index 6222c22c7..038538326 100644
--- a/rules/post/image_ipkg.make
+++ b/rules/post/image_ipkg.make
@@ -35,10 +35,10 @@ ipkg-index: $(PKGDIR)/Packages
PHONY += $(PKGDIR)/Packages
$(PKGDIR)/Packages: $(STATEDIR)/host-ipkg-utils.install.post
- @echo -n "Creating ipkg index '$(notdir $@)'..."
+ @echo "Creating ipkg index '$@'..."
@rm -f $(PKGDIR)/Packages*
@$(HOST_ENV) \
- ipkg-make-index -l "$(PKGDIR)/Packages.filelist" -p "$(@)" "$(PKGDIR)" >/dev/null 2>&1
+ ipkg-make-index -l "$(PKGDIR)/Packages.filelist" -p "$(@)" "$(PKGDIR)"
@echo "done."
# vim: syntax=make