On 30/06/2009, Luca Favatella <slacky...@gmail.com> wrote: > This little patch adds cons25 terminfo file.
There was a "'" missing. Fixed in the attached second version of the patch.
Index: packages/debian-installer-utils/debian/changelog =================================================================== --- packages/debian-installer-utils/debian/changelog (.../trunk) (revision 59177) +++ packages/debian-installer-utils/debian/changelog (.../branches/d-i/kfreebsd) (revision 59185) @@ -1,3 +1,10 @@ +debian-installer-utils (1.70) UNRELEASED; urgency=low + + [ Luca Favatella ] + * Add 'cons25' terminfo file (used by kfreebsd-i386). + + -- Colin Watson <cjwat...@debian.org> Tue, 30 Jun 2009 13:02:50 +0100 + debian-installer-utils (1.69) unstable; urgency=low * block-attr: The 'type' builtin doesn't seem to handle variable Index: packages/debian-installer-utils/debian/rules =================================================================== --- packages/debian-installer-utils/debian/rules (.../trunk) (revision 59177) +++ packages/debian-installer-utils/debian/rules (.../branches/d-i/kfreebsd) (revision 59185) @@ -25,8 +25,9 @@ dh_installdebconf -i dh_compress -i dh_fixperms -i - for file in /usr/share/terminfo/a/ansi /usr/share/terminfo/d/dumb \ - /usr/share/terminfo/l/linux /usr/share/terminfo/v/vt102; do \ + for file in /usr/share/terminfo/a/ansi /usr/share/terminfo/c/cons25 \ + /usr/share/terminfo/d/dumb /usr/share/terminfo/l/linux \ + /usr/share/terminfo/v/vt102; do \ mkdir -p debian/di-utils-terminfo/`dirname $$file`; \ cp -pL $$file debian/di-utils-terminfo/$$file; \ chmod 644 debian/di-utils-terminfo/$$file; \