summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Collins <bcollins@debian.org>1999-10-21 16:58:45 +0000
committerBen Collins <bcollins@debian.org>1999-10-21 16:58:45 +0000
commited81057b80d831bf8c247f90255e1332894023b4 (patch)
tree22522f86ed53f0bed79c2c83582ff348987c4df2
parent9a1e36f12a663ae12762924a30578b0d3cfc54f6 (diff)
downloaddpkg-ed81057b80d831bf8c247f90255e1332894023b4.tar.gz
* Fixed incorrect patch for --print-architecture (oops, oh well
it was already broken when there was no gcc anyway :)
-rw-r--r--ChangeLog5
-rw-r--r--TODO2
-rw-r--r--debian/changelog8
-rw-r--r--main/enquiry.c3
4 files changed, 17 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f5b2b40a..a8d8c4d7e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 21 12:57:31 EDT 1999 Ben Collins <bcollins.debian.org>
+
+ * 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 <bcollins.debian.org>
* Fixed the check that was added to dpkg-divert.
diff --git a/TODO b/TODO
index fb4f5045e..8fc839bc7 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 <file>.gz if <file> can't be found ? and maybe,
remove <file> if <file.gz> can't be found? Bug mess when we start
thinking about bz2 :/
diff --git a/debian/changelog b/debian/changelog
index 52d4c79ef..6db599a0c 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 <wakkerma@debian.org> 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 cc600f740..e4d7efe68 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);
}