diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-01 14:57:06 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-06 23:38:12 +0900 |
commit | ce2ddd6d6ab3b343837d5c8e17538a5f67fa400e (patch) | |
tree | 47c71794a11e3292d61551a06c9509bb8dd04f00 /scripts/Makefile.modpost | |
parent | 52c3416db00d970c91a6992ab6e5ff48e077ad29 (diff) | |
download | linux-stable-ce2ddd6d6ab3b343837d5c8e17538a5f67fa400e.tar.gz linux-stable-ce2ddd6d6ab3b343837d5c8e17538a5f67fa400e.tar.bz2 linux-stable-ce2ddd6d6ab3b343837d5c8e17538a5f67fa400e.zip |
modpost: allow to pass -i option multiple times to remove -e option
Now that there is no difference between -i and -e, they can be unified.
Make modpost accept the -i option multiple times, then remove -e.
I will reuse -e for a different purpose.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/Makefile.modpost')
-rw-r--r-- | scripts/Makefile.modpost | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index 3334f100a490..7e07adab929c 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost @@ -50,7 +50,7 @@ MODPOST = scripts/mod/modpost \ $(if $(CONFIG_MODVERSIONS),-m) \ $(if $(CONFIG_MODULE_SRCVERSION_ALL),-a) \ $(if $(KBUILD_EXTMOD),-i,-o) $(kernelsymfile) \ - $(if $(KBUILD_EXTMOD),$(addprefix -e ,$(KBUILD_EXTRA_SYMBOLS))) \ + $(if $(KBUILD_EXTMOD),$(addprefix -i ,$(KBUILD_EXTRA_SYMBOLS))) \ $(if $(KBUILD_EXTMOD),-o $(modulesymfile)) \ $(if $(CONFIG_SECTION_MISMATCH_WARN_ONLY),,-E) \ $(if $(KBUILD_MODPOST_WARN),-w) |