Commit 9dda7290 authored by Dmitry's avatar Dmitry Committed by GitHub

Typo fix Update flags.mk (#13226)

parent 53b3af70
......@@ -7,7 +7,7 @@
#
# MAKEFLAGS is a string of the form:
# "abc --foo --bar=baz -- VAR1=val1 VAR2=val2", namely:
# - abc is the concatnation of all short flags
# - abc is the concatenation of all short flags
# - --foo and --bar=baz are long options,
# - -- is the separator between flags and variable assignments,
# - VAR1=val1 and VAR2=val2 are variable assignments
......@@ -21,4 +21,4 @@
tmp-flags := $(wordlist 2,$(words $(MAKEFLAGS)),$(MAKEFLAGS))
# Then remove all long options, including the -- separator, if needed. That
# leaves only variable assignments.
JUSTFLAGS := $(patsubst --%,,$(tmp-flags))
\ No newline at end of file
JUSTFLAGS := $(patsubst --%,,$(tmp-flags))
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