Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maciej Katafiasz (mathrick)
asdf
Commits
0654a033
Commit
0654a033
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.011.9: fix an error message (lp#693886). Thanks to Attila Lendvai.
parent
a7128826
Branches
Branches containing commit
Tags
2.011.9
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
asdf.asd
+1
-1
1 addition, 1 deletion
asdf.asd
asdf.lisp
+2
-3
2 additions, 3 deletions
asdf.lisp
test/run-shell-command-test.script
+1
-1
1 addition, 1 deletion
test/run-shell-command-test.script
with
4 additions
and
5 deletions
asdf.asd
+
1
−
1
View file @
0654a033
...
...
@@ -12,7 +12,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.011.
8
"
:version
"2.011.
9
"
;;:version #.(asdf:asdf-version) ; how do we make that the *described* ASDF's version rather than the *previously loaded* ASDF's version?
:depends-on
()
:components
...
...
This diff is collapsed.
Click to expand it.
asdf.lisp
+
2
−
3
View file @
0654a033
...
...
@@ -80,7 +80,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.011.
8
"
)
(
asdf-version
"2.011.
9
"
)
(
existing-asdf
(
fboundp
'find-system
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -1681,8 +1681,7 @@ recursive calls to traverse.")
required-op
required-c
required-v
))
(
retry
()
:report
(
lambda
(
s
)
(
format
s
"~@<Retry loading component ~S.~@:>"
(
component-find-path
required-c
)))
(
format
s
"~@<Retry loading component ~S.~@:>"
required-c
))
:test
(
lambda
(
c
)
(
or
(
null
c
)
...
...
This diff is collapsed.
Click to expand it.
test/run-shell-command-test.script
+
1
−
1
View file @
0654a033
...
...
@@ -3,7 +3,7 @@
(load-asdf)
;;; test asdf run-shell-command function
;;; Stas Bo
kura
ev found (and fixed) a bug where on clisp asdf:run-shell-command might not return
;;; Stas Bo
ukar
ev found (and fixed) a bug where on clisp asdf:run-shell-command might not return
;;; the right value. This attemtps to test for that.
(quit-on-error
(assert (eql 1 (asdf:run-shell-command "/usr/bin/false")))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment