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
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
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
asdf
asdf
Commits
62816657
Commit
62816657
authored
Jan 20, 2014
by
Robert P. Goldman
Browse files
Options
Browse Files
Download
Plain Diff
Warn on attempted use of BUNDLE-OP where unsupported.
Merge branch 'bundle-op-warn'.
parents
a94ac819
0409d059
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
bundle.lisp
bundle.lisp
+8
-0
No files found.
bundle.lisp
View file @
62816657
...
...
@@ -490,3 +490,11 @@
(
defun
bundle-system
(
system
&rest
args
&key
force
(
verbose
t
)
version
&allow-other-keys
)
(
declare
(
ignore
force
verbose
version
))
(
apply
#'
operate
'binary-op
system
args
)))
#+
(
and
(
not
asdf-use-unsafe-mac-bundle-op
)
(
or
(
and
ecl
darwin
)
(
and
abcl
darwin
)))
(
defmethod
perform
:before
((
op
bundle-op
)
c
)
(
declare
(
ignorable
op
c
))
(
unless
(
uiop:featurep
:asdf-use-unsafe-mac-bundle-op
)
(
cerror
"Continue after modifying *FEATURES*."
"The BUNDLE-OPs are not supported on Mac OSX for this lisp.~%~TTo continue, push :asdf-use-unsafe-mac-bundle-op on *FEATURES*.~%~TPlease report to ASDF-DEVEL if this works for you."
)))
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