Commit 5bca6e82 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Contribs: sort the packages in alphabetical order

parent 3e46bbc9
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment