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
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jan Moringen
asdf
Commits
dd7e591c
Commit
dd7e591c
authored
Mar 17, 2014
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
concatenate to a temporary file for more robustness.
parent
81438c48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
concatenate-source.lisp
concatenate-source.lisp
+5
-3
No files found.
concatenate-source.lisp
View file @
dd7e591c
...
...
@@ -77,9 +77,11 @@
(
lisp-compilation-output-files
o
s
))
(
defmethod
perform
((
o
basic-concatenate-source-op
)
(
s
system
))
(
let
((
inputs
(
input-files
o
s
))
(
output
(
output-file
o
s
)))
(
concatenate-files
inputs
output
)))
(
let*
((
ins
(
input-files
o
s
))
(
out
(
output-file
o
s
))
(
tmp
(
tmpize-pathname
out
)))
(
concatenate-files
ins
tmp
)
(
rename-file-overwriting-target
tmp
out
)))
(
defmethod
perform
((
o
basic-load-concatenated-source-op
)
(
s
system
))
(
perform-lisp-load-source
o
s
))
(
defmethod
perform
((
o
basic-compile-concatenated-source-op
)
(
s
system
))
...
...
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