diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2020-11-16 17:30:43 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2020-11-17 17:57:42 +0100 |
commit | 3f1109bf2af2cf4977689a33ea481afaaac8dc98 (patch) | |
tree | e6fe442f66d52b39890d7501f9b9d3145481494a /package/base-files/Makefile | |
parent | 21dfdfd78b31a4a330514a5c0126e267be1c7fc3 (diff) | |
download | upstream-3f1109bf2af2cf4977689a33ea481afaaac8dc98.tar.gz upstream-3f1109bf2af2cf4977689a33ea481afaaac8dc98.tar.bz2 upstream-3f1109bf2af2cf4977689a33ea481afaaac8dc98.zip |
base-files: fix backwards compatiblity of rc.common EXTRA_COMMANDS
Avoid needlessly breaking old initscripts that set EXTRA_COMMANDS. This
will aid in debugging (as it simplifies reverting to an older version of
a package) and unbreaks third-party feeds (and packages that maintain
their OpenWrt initscripts as part of the software's repo instead of the
OpenWrt feed like fastd).
Without this, initscripts that set EXTRA_COMMANDS become completely
unusable, as all default commands like start/stop cease working.
Fixes: 1a69f50dc627 ("base-files: fix rc.common help alignment")
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
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 b546eb7e0b..e13578860f 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:=236 +PKG_RELEASE:=237 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |