From ed81057b80d831bf8c247f90255e1332894023b4 Mon Sep 17 00:00:00 2001 From: Ben Collins Date: Thu, 21 Oct 1999 16:58:45 +0000 Subject: [PATCH] * Fixed incorrect patch for --print-architecture (oops, oh well it was already broken when there was no gcc anyway :) --- ChangeLog | 5 +++++ TODO | 2 ++ debian/changelog | 8 ++++++++ main/enquiry.c | 3 ++- 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3f5b2b40..a8d8c4d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 21 12:57:31 EDT 1999 Ben Collins + + * Fixed incorrect patch for --print-architecture (oops, oh well + it was already broken when there was no gcc anyway :) + Thu Oct 21 10:22:43 EDT 1999 Ben Collins * Fixed the check that was added to dpkg-divert. diff --git a/TODO b/TODO index fb4f5045..8fc839bc 100644 --- a/TODO +++ b/TODO @@ -21,6 +21,8 @@ urgent * openpgp signatures in the package archive other stuff unlikely to get done soon + * Purge a.out compatibility from source (keep the upgrade stuff in + place). * Automatically remove .gz if can't be found ? and maybe, remove if can't be found? Bug mess when we start thinking about bz2 :/ diff --git a/debian/changelog b/debian/changelog index 52d4c79e..6db599a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +dpkg (1.4.1.18) unstable; urgency=low + + * Fixed incorrect patch for --print-architecture (oops, oh well + it was already broken when there was no gcc anyway :) + + + -- Wichert Akkerman UNRELEASED + dpkg (1.4.1.17) unstable; urgency=low * Add support for long filenames, along with --assert-longfilenames diff --git a/main/enquiry.c b/main/enquiry.c index cc600f74..e4d7efe6 100644 --- a/main/enquiry.c +++ b/main/enquiry.c @@ -647,7 +647,8 @@ void printarch(const char *const *argv) { * are being called, then we should just give them the built * in arch. */ - if (printf("%s\n",architecture) == EOF) werr("stdout"); + if (printf("/usr/lib/gcc-lib/%s-none/0.0.0/libgcc.a\n",architecture) == EOF) + werr("stdout"); if (fflush(stdout)) werr("stdout"); exit(0); } -- 2.39.5