[source] imagebuilder: don't rewrite package list output

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 14 09:44:40 PST 2017


jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/59004433e998b626eb94c57110485249a14fa12a

commit 59004433e998b626eb94c57110485249a14fa12a
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Sat Jun 17 01:24:43 2017 +0200

    imagebuilder: don't rewrite package list output
    
    No longer rewrite opkg list output in package_list function, remove
    the awk call in the pipe (which was intended for a single specific
    use-case).
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
    (cherry picked from commit d80d1b6c42aa663e6104f817daa5ea29d2e7073d)
---
 target/imagebuilder/files/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile
index 7089911..f619370 100644
--- a/target/imagebuilder/files/Makefile
+++ b/target/imagebuilder/files/Makefile
@@ -141,7 +141,7 @@ package_reload:
 
 package_list: FORCE
 	@$(MAKE) -s package_reload
-	@$(OPKG) list --size 2>/dev/null | awk -F" - " '{printf "%s %s %s\n", $$1, $$2, $$3}'
+	@$(OPKG) list --size 2>/dev/null
 
 package_install: FORCE
 	@echo



More information about the lede-commits mailing list