summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorBen Collins <bcollins@debian.org>1999-10-18 13:22:52 +0000
committerBen Collins <bcollins@debian.org>1999-10-18 13:22:52 +0000
commit46e75512768d432fb6fa9f2edb47435903298566 (patch)
tree6213b07a1844b76ab7c2101a1060e784319d27b4 /main
parent2613ab5b06a9062ddcc2aa10f19cae87b75aa1da (diff)
downloaddpkg-46e75512768d432fb6fa9f2edb47435903298566.tar.gz
* Add mipseb to the archtable too, since mips and mipseb are
both viable names for the mips big endian arch * Update dpkg-architecure's archtable * Removed the maintainer-configure portion in debian/rules, since we should be shipping the source with all the auto* stuff already generated anyway * Removed the ltconfig patch, and resort to a debian/rules fix to libtool itself after running configure, much cleaner, and reversible since libtool is a generated file * Use DESTDIR when installing instead of specifying all our dest dirs seperately in the make line. Also fix some of the make files to use DESTDIR when installing files * Regenerated .po files and dpkg.pot. Also added update.sh to the po/ subdir for easier regenerating for cvs only * Make release.sh generate .gmo files * Removed shlibs.default.i386. This is an obsolete file. We also no longer use /etc/dpkg/ directory.
Diffstat (limited to 'main')
-rw-r--r--main/processarc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/processarc.c b/main/processarc.c
index a5eae5908..834592083 100644
--- a/main/processarc.c
+++ b/main/processarc.c
@@ -604,8 +604,8 @@ void process_archive(const char *filename) {
/* If we can't stat the old or new file, or it's a directory,
* we leave it up to the normal code
*/
- debug(dbg_eachfile, "process_archive: checking %s for same files on
- upgrade/downgrade", fnamevb.buf);
+ debug(dbg_eachfile, "process_archive: checking %s for same files on "
+ "upgrade/downgrade", fnamevb.buf);
if (!lstat(fnamevb.buf, &oldfs) && !S_ISDIR(oldfs.st_mode)) {
for (cfile = newfileslist; cfile; cfile = cfile->next) {
if (lstat(cfile->namenode->name, &newfs) || S_ISDIR(newfs.st_mode))