[vlc-commits] Contribs: sort the packages in alphabetical order
Jean-Baptiste Kempf
git at videolan.org
Sun Feb 15 17:04:06 CET 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Feb 15 17:03:50 2015 +0100| [5bca6e8284ff719033b0ffbfbbec8a141a32c5cc] | committer: Jean-Baptiste Kempf
Contribs: sort the packages in alphabetical order
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5bca6e8284ff719033b0ffbfbbec8a141a32c5cc
---
contrib/src/main.mak | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/contrib/src/main.mak b/contrib/src/main.mak
index f0773b9..fdeeba9 100644
--- a/contrib/src/main.mak
+++ b/contrib/src/main.mak
@@ -400,19 +400,19 @@ package: install
list:
@echo All packages:
- @echo ' $(PKGS_ALL)' | fmt
+ @echo ' $(PKGS_ALL)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo Distribution-provided packages:
- @echo ' $(PKGS_FOUND)' | fmt
+ @echo ' $(PKGS_FOUND)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo Automatically selected packages:
- @echo ' $(PKGS_AUTOMATIC)' | fmt
+ @echo ' $(PKGS_AUTOMATIC)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo Manually deselected packages:
- @echo ' $(PKGS_DISABLE)' | fmt
+ @echo ' $(PKGS_DISABLE)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo Manually selected packages:
- @echo ' $(PKGS_ENABLE)' | fmt
+ @echo ' $(PKGS_ENABLE)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo Depended-on packages:
- @echo ' $(PKGS_DEPS)' | fmt
+ @echo ' $(PKGS_DEPS)' | tr " " "\n" | sort | tr "\n" " " |fmt
@echo To-be-built packages:
- @echo ' $(PKGS)' | fmt
+ @echo ' $(PKGS)' | tr " " "\n" | sort | tr "\n" " " |fmt
.PHONY: all fetch fetch-all install mostlyclean clean distclean package list prebuilt
More information about the vlc-commits
mailing list