Bug#206464: locales: tail command in postinst should be changed to new format

2003-08-20 Thread Jurij Smakov
Package: locales Version: 2.3.2-3 Severity: normal Tags: sid Hi! 'tail' command is used in postinst script as: last=`tail -1 $LG` This is old format, which is no longer supported, so this line breaks dpkg-reconfigure, for example. It should be changed to last=`tail -n 1 $LG` Regards, Jurij

Bug#206464: locales: tail command in postinst should be changed to new format

2003-08-20 Thread Jeff Bailey
On Wed, Aug 20, 2003 at 09:05:04PM +0200, Jurij Smakov wrote: 'tail' command is used in postinst script as: last=`tail -1 $LG` This is old format, which is no longer supported, so this line breaks dpkg-reconfigure, for example. It should be changed to last=`tail -n 1 $LG` thanks.