diff --git a/srcpkgs/util-linux/patches/fix-musl-2.patch b/srcpkgs/util-linux/patches/fix-musl-2.patch new file mode 100644 index 0000000000..2786f617c4 --- /dev/null +++ b/srcpkgs/util-linux/patches/fix-musl-2.patch @@ -0,0 +1,13 @@ +Fixes rendering issue with chsh + +--- login-utils/chsh.c.orig 2015-08-01 23:56:41.281133707 +0200 ++++ login-utils/chsh.c 2015-08-01 23:56:52.116132896 +0200 +@@ -179,6 +179,7 @@ static char *ask_new_shell(char *questio + if (!oldshell) + oldshell = ""; + printf("%s [%s]: ", question, oldshell); ++ fflush(stdout); + sz = getline(&ans, &dummy, stdin); + if (sz == -1) + return NULL; + diff --git a/srcpkgs/util-linux/template b/srcpkgs/util-linux/template index 7e79a06354..8b1c085b48 100644 --- a/srcpkgs/util-linux/template +++ b/srcpkgs/util-linux/template @@ -1,7 +1,7 @@ # Template file for 'util-linux' pkgname=util-linux version=2.26.2 -revision=5 +revision=6 short_desc="Miscellaneous linux utilities" maintainer="Juan RP " homepage="http://userweb.kernel.org/~kzak/util-linux-ng"