From 360ff43156feb97c3fc29fffbcd200aea28817ae Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Sat, 26 Jan 2013 16:07:54 -0500 Subject: [PATCH] 2.26.148: fix previous ABL tweak. --- asdf.asd | 2 +- backward-interface.lisp | 6 +++--- header.lisp | 2 +- upgrade.lisp | 2 +- version.lisp-expr | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/asdf.asd b/asdf.asd index aab2cb42a..caac055d3 100644 --- a/asdf.asd +++ b/asdf.asd @@ -59,7 +59,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.26.147" ;; to be automatically updated by make bump-version + :version "2.26.148" ;; to be automatically updated by make bump-version :depends-on () :components ((:module "build" diff --git a/backward-interface.lisp b/backward-interface.lisp index b6de9890a..2e73e3fce 100644 --- a/backward-interface.lisp +++ b/backward-interface.lisp @@ -97,9 +97,9 @@ if that's whay you mean." ;;) ,@source-to-target-mappings #+abcl (#p"jar:file:/**/*.jar!/**/*.*" (:function translate-jar-pathname)) #+abcl (#p"/___jar___file___root___/**/*.*" (,@destination-directory)) - ,(loop :for pattern :in patterns - :collect `((:root ,*wild-inferiors* ,pattern) - (,@destination-directory ,pattern))) + ,@(loop :for pattern :in patterns + :collect `((:root ,*wild-inferiors* ,pattern) + (,@destination-directory ,pattern))) (t t) :ignore-inherited-configuration)))) diff --git a/header.lisp b/header.lisp index 96f6bffaf..9990fadcb 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.147: Another System Definition Facility. +;;; This is ASDF 2.26.148: 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 590f92433..b6ae1cda0 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.147") + (asdf-version "2.26.148") (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 edfca377d..a65f1dc94 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.26.147" +"2.26.148" -- GitLab