tags 530048 + patch thanks Dear maintainer,
I've prepared an NMU for aufs (versioned as 0+20090302-2.1) and uploaded it to DELAYED/7. Please free to tell me if I should delay it longer. Regards. diff -u aufs-0+20090302/debian/changelog aufs-0+20090302/debian/changelog --- aufs-0+20090302/debian/changelog +++ aufs-0+20090302/debian/changelog @@ -1,3 +1,10 @@ +aufs (0+20090302-2.1) unstable; urgency=low + + * Non-maintainer upload. + * fix-bashisms.diff: Fix bashism. (Closes: #530048) + + -- Raphael Geissert <[email protected]> Thu, 02 Jul 2009 21:23:34 -0500 + aufs (0+20090302-2) unstable; urgency=low * Support Kernel 2.6.29 (Closes: #521788) diff -u aufs-0+20090302/debian/patches/series aufs-0+20090302/debian/patches/series --- aufs-0+20090302/debian/patches/series +++ aufs-0+20090302/debian/patches/series @@ -6,0 +7 @@ +fix-bashisms.diff only in patch2: unchanged: --- aufs-0+20090302.orig/debian/patches/fix-bashisms.diff +++ aufs-0+20090302/debian/patches/fix-bashisms.diff @@ -0,0 +1,17 @@ +Use a combination of printf and read, read -p is a bashism +Index: aufs-0+20090302/util/auchk +=================================================================== +--- aufs-0+20090302.orig/util/auchk ++++ aufs-0+20090302/util/auchk +@@ -75,8 +75,9 @@ do + test ! -e "$dir/$base" && continue + + ls -ld "$dir/$wh" "$dir/$base" +- read -p 'Which to remove [whiteout/real/skip]? ' ans \ +- < /dev/tty > /dev/tty 2>&1 ++ printf 'Which to remove [whiteout/real/skip]? ' \ ++ > /dev/tty ++ read ans < /dev/tty + case "$ans" in + [wW]*) Remove "$dir/$wh" || :;; + [rR]*) Remove "$dir/$base" || :;; -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

