summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Paulo Rechi Vita <jprvita@endlessos.org>2021-11-10 16:33:22 -0500
committerRay Strode <halfline@gmail.com>2022-01-11 14:24:14 +0000
commitdf10062109c2d60c6ce53f4d224ca65d00f72cf1 (patch)
treed0fcf04b3be9281b169ceda2bf69a8269efe7bae
parent1906f04428f3043e95cf817efbe2a249c6f1cae0 (diff)
configure: Fix help string for --with-background-end-color-stop
Looks like it was copied from --with-background-start-color-stop and never updated to reflect the option it is describing.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9c9a3e13..c82ba968 100644
--- a/configure.ac
+++ b/configure.ac
@@ -181,7 +181,7 @@ AC_SUBST(background_color)
AC_ARG_WITH(background-start-color-stop, AS_HELP_STRING([--with-background-start-color-stop],[first color stop in background gradients used by boot splash plugins]),background_start_color=${withval},background_start_color=0x807c71)
AC_SUBST(background_start_color)
-AC_ARG_WITH(background-end-color-stop, AS_HELP_STRING([--with-background-end-color-stop],[first color end in background gradients used by boot splash plugins]),background_end_color=${withval},background_end_color=0x3a362f)
+AC_ARG_WITH(background-end-color-stop, AS_HELP_STRING([--with-background-end-color-stop],[last color end in background gradients used by boot splash plugins]),background_end_color=${withval},background_end_color=0x3a362f)
AC_SUBST(background_end_color)
AC_ARG_WITH(release-file, AS_HELP_STRING([--with-release-file=<path_to_release_file>],[Release File to use to detect distribution (by default /etc/system-release)]),RELEASE_FILE=${withval},RELEASE_FILE=/etc/system-release)