From: João Paulo Rechi Vita Date: Wed, 10 Nov 2021 21:33:22 +0000 (-0500) Subject: configure: Fix help string for --with-background-end-color-stop X-Git-Tag: 22.02.122~4^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df10062109c2d60c6ce53f4d224ca65d00f72cf1;p=thirdparty%2Fplymouth.git 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. --- 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=],[Release File to use to detect distribution (by default /etc/system-release)]),RELEASE_FILE=${withval},RELEASE_FILE=/etc/system-release)