How do you tell ASDF to process a component file only if it exists (so it doesn't generate an error if it doesn't exist yet).
(asdf:defsystem "my-system"
:components ((:file "utilities")
(:file "temp-file" :depends-on ("utilities"))))
My workaround is using a reader macro #. on (probe-file "temp-file") but can't get that to work.