Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf-dependency-grovel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xcvb
asdf-dependency-grovel
Commits
e49c446c
Commit
e49c446c
authored
Nov 18, 2009
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Punt on atomic rename-file for CLISP: workaround by deleting old file if present.
parent
d64cfb86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
asdf-ops.lisp
asdf-ops.lisp
+3
-1
No files found.
asdf-ops.lisp
View file @
e49c446c
...
...
@@ -230,7 +230,9 @@ to the base of the system."
;; :debug-object-types debug-object-types
:base-pathname
base-pathname
))))))
#+
clisp
(
posix:copy-file
tmp-file-name
destination-file
:method
:rename
)
(
when
(
probe-file
destination-file
)
(
delete-file
destination-file
))
;; Workaround BUG in CLISP 2.48, lose atomicity
#+
clisp
(
posix:copy-file
tmp-file-name
destination-file
:method
:rename
:if-exists
:overwrite
)
#-
clisp
(
rename-file
tmp-file-name
destination-file
#+
clozure
:if-exists
#+
clozure
:rename-and-delete
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment