diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-07-24 08:44:03 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2020-11-02 21:32:38 +0100 |
commit | 1a69f50dc627f6fc5860f871edec357cc0a187e6 (patch) | |
tree | 695613f7d3d846e14cb6826cab0099f581dcee9b /package/base-files/Makefile | |
parent | 54fad3f32b06d27edb6419eeefa6e93f8b3846fa (diff) | |
download | upstream-1a69f50dc627f6fc5860f871edec357cc0a187e6.tar.gz upstream-1a69f50dc627f6fc5860f871edec357cc0a187e6.tar.bz2 upstream-1a69f50dc627f6fc5860f871edec357cc0a187e6.zip |
base-files: fix rc.common help alignment
This commit introduces a new function `extra_command` to better format
the help text without having to calculate the indentation in every startup
script that wants to add a new command. So far it looks weird and is not
formatted correctly on some startup scripts.
After using the new `extra_command` wrapper the alignement looks correctly.
And if the indentation is not sufficient in the future, this can be
changed in the function extra_command at a central location.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 84b2f2d5ec..c139ea313b 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=base-files -PKG_RELEASE:=233 +PKG_RELEASE:=234 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |