]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
configure: Fix help string for --with-background-end-color-stop
authorJoão Paulo Rechi Vita <jprvita@endlessos.org>
Wed, 10 Nov 2021 21:33:22 +0000 (16:33 -0500)
committerRay Strode <halfline@gmail.com>
Tue, 11 Jan 2022 14:24:14 +0000 (14:24 +0000)
Looks like it was copied from --with-background-start-color-stop and
never updated to reflect the option it is describing.

configure.ac

index 9c9a3e130ab4d54c3f032a2a249619b4bb7fb537..c82ba9684b95f35ce292d390928a0ff9ea4d0d58 100644 (file)
@@ -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)