/usr/share/common-lisp/source/cmucl-graystream/cmucl-graystream.asd is in cmucl-source 21a-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ;;; -*- Mode: lisp -*-
;;
;; Graystream system definition
(in-package :asdf)
#+cmu
(defclass cl-modifying-file (cl-source-file) ())
#+cmu
(defmethod perform ((op load-op) (c cl-modifying-file))
(ext:without-package-locks
(call-next-method)))
#+cmu
(defmethod source-file-type ((c cl-modifying-file) (s module))
"lisp")
#+cmu
(defsystem cmucl-graystream
:components
((:file "gray-streams-class")
(:cl-modifying-file "gray-streams"
:depends-on ("gray-streams-class"))))
|