Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 axiom (20140801-12) unstable; urgency=medium
 .
   * build dep against latest gcl
   * Bug fix: "FTBFS on arm64, mips64el and mipsel", thanks to Emilio
     Pozuelo Monfort (Closes: #840639).
Author: Camm Maguire <camm@debian.org>
Bug-Debian: https://bugs.debian.org/840639

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2016-10-13

--- axiom-20140801.orig/books/bookvol5.pamphlet
+++ axiom-20140801/books/bookvol5.pamphlet
@@ -37643,9 +37643,9 @@ The localdatabase function tries to find
   (processDir (dirarg thisdir)
    (let (allfiles)
     (declare (special vmlisp::*index-filename*))
-    (system:chdir (string dirarg))
+    (system::chdir (string dirarg))
     (setq allfiles (directory "*"))
-    (system:chdir thisdir)
+    (system::chdir thisdir)
      (mapcan #'(lambda (f)
       (when (string-equal (pathname-type f) "nrlib")
        (list (concatenate 'string (namestring f) "/"
--- axiom-20140801.orig/src/interp/patches.lisp.pamphlet
+++ axiom-20140801/src/interp/patches.lisp.pamphlet
@@ -129,7 +129,7 @@ It used to read:
         ((eql (|directoryp| (interp-make-directory (car args))) 1)
          (setq $current-directory 
            (namestring (truename (interp-make-directory (car args)))))))
-#+(or :kcl :ibcl :CCL) (system:CHDIR $current-directory)
+#+(or :kcl :ibcl :CCL) (system::CHDIR $current-directory)
 #+(and :lucid :ibm/370)
   (setq *default-pathname-defaults* "")
 #-(and :lucid :ibm/370)
@@ -148,7 +148,7 @@ It used to read:
     ((eql (|directoryp| (interp-make-directory (car args))) 1)
      (setq $current-directory 
        (namestring (truename (interp-make-directory (car args)))))))
-#+(or :kcl :ibcl :CCL) (system:CHDIR $current-directory)
+#+(or :kcl :ibcl :CCL) (system::CHDIR $current-directory)
 #+(and :lucid :ibm/370)
   (setq *default-pathname-defaults* "")
 #-(and :lucid :ibm/370)
