+Tue Dec 7 14:08:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
+
+ * Fix display of copyright in menu
+
Tue Dec 7 01:26:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
* Commend changes made in pkgdepcon.cc; they're not completely
+dpkg (1.6.3) unstable; urgency=high
+
+ * Comment dselect changes from 1.6.2, they seem to have a problem
+ Closes: #52043,52058,52088,51437
+ * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
+ * Fix copyright display in dselect menu, Closes: #52093
+ * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
+
+ -- Wichert Akkerman <wakkerma@debian.org> UNRELEASED
+
dpkg (1.6.2) unstable; urgency=low
* New dpkg-scansources, Closes: #51888
* Fix default for elispdir, Closes: #51919,51525
* New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
* Buildsystem updates, Closes: #51525, 51855, 51914
+ * Modify dselect behaviour for suggests and recommends
- -- Wichert Akkerman <wakkerma@debian.org> UNRELEASED
+ -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Dec 1999 19:29:50 +0100
dpkg (1.6.1) unstable; urgency=low
}
int refreshmenu(void) {
+ char buf[2048];
curseson(); cbreak(); noecho(); nonl(); keypad(stdscr,TRUE);
int y,x;
"Press ENTER to confirm selection. ^L to redraw screen.\n\n"));
attrset(A_NORMAL);
- addstr(gettext(copyrightstring));
+ sprintf(buf,gettext(copyrightstring),DPKG_VERSION_ARCH);
+ addstr(buf);
return i;
}
rm -f `find . -name .cvsignore -type f`
# Remove any cruft files...
-rm -f `find . -name '*.orig' -o -name '*.rej' -o -name '*~'`
+rm -f `find . -name '*.orig' -o -name '*.rej' -o -name '*~' -o name '.#*'`
# Generate all the gettext stuff
cd po