gnu: clang-from-llvm: Fix install for clang-3.*.
* gnu/packages/llvm.scm (clang-from-llvm): Fix install for clang-3.*.
This commit is contained in:
parent
e91152e9f2
commit
ad8a4a666d
|
@ -243,17 +243,21 @@ compiler. In LLVM this library is called \"compiler-rt\".")
|
|||
out "/etc/bash_completion.d")))
|
||||
(with-directory-excursion (string-append out
|
||||
"/share/clang")
|
||||
(for-each
|
||||
(lambda (file)
|
||||
(when (file-exists? file)
|
||||
(delete-file file)))
|
||||
;; Delete extensions for proprietary text editors.
|
||||
(delete-file "clang-format-bbedit.applescript")
|
||||
(delete-file "clang-format-sublime.py")
|
||||
'("clang-format-bbedit.applescript"
|
||||
"clang-format-sublime.py"
|
||||
;; Delete Emacs extensions: see their respective Emacs
|
||||
;; Guix package instead.
|
||||
(delete-file "clang-rename.el")
|
||||
(delete-file "clang-format.el")
|
||||
"clang-rename.el" "clang-format.el"))
|
||||
;; Install bash completion.
|
||||
(when (file-exists? "bash-autocomplete.sh")
|
||||
(mkdir-p compl-dir)
|
||||
(rename-file "bash-autocomplete.sh"
|
||||
(string-append compl-dir "/clang"))))
|
||||
(string-append compl-dir "/clang")))))
|
||||
#t)))))
|
||||
|
||||
;; Clang supports the same environment variables as GCC.
|
||||
|
|
Loading…
Reference in New Issue