diff --git a/action.lisp b/action.lisp index c536a4bbefa783bb35a005e2802f676fb454f4fc..ad9a70ae5ad0d6efaa5125cda1dd1eea272c9d61 100644 --- a/action.lisp +++ b/action.lisp @@ -56,7 +56,8 @@ ,if-no-operation)) (defmethod ,function ((,operation operation) ,component ,@more-args) (if (typep ,component 'component) - (error "No defined method for ~S on ~S" ',function ,component) + (error "No defined method for ~S on ~/asdf-action:format-action/" + ',function (cons ,operation ,component)) (let ((,found (find-component () ,component))) (if ,found ,(next-method operation found) diff --git a/asdf.asd b/asdf.asd index 342202a245b28acc0756f5c7e1d7c2488381650e..f4a581cbae310d3d9503c67d81c1cec08fecc035 100644 --- a/asdf.asd +++ b/asdf.asd @@ -15,6 +15,7 @@ ;; and compulsory to sort them in defsystem-depends-on order. :version (:read-file-form "version.lisp-expr") :around-compile call-without-redefinition-warnings ;; we need be the same as asdf-driver + :encoding :utf-8 :components ((:file "header"))) @@ -28,6 +29,7 @@ :build-pathname "build/asdf" ;; our target :around-compile call-without-redefinition-warnings ;; we need be the same as asdf-driver :depends-on (:asdf/header :asdf-driver) + :encoding :utf-8 :components ((:file "upgrade") (:file "component" :depends-on ("upgrade")) @@ -60,8 +62,9 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.26.150" ;; to be automatically updated by make bump-version + :version "2.26.151" ;; to be automatically updated by make bump-version :depends-on () + #+asdf3 :encoding #+asdf3 :utf-8 :components ((:module "build" :components diff --git a/header.lisp b/header.lisp index ae0db98dca84848f15cc2fe5fec3636c03c9352f..61641a9b43f5d91de19eac5d115146880a42708e 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.26.150: Another System Definition Facility. +;;; This is ASDF 2.26.151: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/upgrade.lisp b/upgrade.lisp index f7e7a24ca764c9a0f90a876dd0b4b42182d32a14..b3a97c92c56da6aa67b43cd024bf66672b9509fe 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -35,7 +35,7 @@ ;; "2.345.6" would be a development version in the official upstream ;; "2.345.0.7" would be your seventh local modification of official release 2.345 ;; "2.345.6.7" would be your seventh local modification of development version 2.345.6 - (asdf-version "2.26.150") + (asdf-version "2.26.151") (existing-asdf (find-class (find-symbol* :component :asdf nil) nil)) (existing-version *asdf-version*) (already-there (equal asdf-version existing-version)) diff --git a/version.lisp-expr b/version.lisp-expr index cbc7e67817f0181fe7cf9a07f46db0efe2abe767..98a191f6eb64ffb00b8e3ac850d06c4d98ec8392 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.26.150" +"2.26.151"