gnu: clang-from-llvm: Fix install for clang-3.*.

* gnu/packages/llvm.scm (clang-from-llvm): Fix install for clang-3.*.
master
Pierre Neidhardt 2018-11-28 13:41:50 +01:00
parent e91152e9f2
commit ad8a4a666d
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 14 additions and 10 deletions

View File

@ -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")
;; Delete extensions for proprietary text editors.
(delete-file "clang-format-bbedit.applescript")
(delete-file "clang-format-sublime.py")
;; Delete Emacs extensions: see their respective Emacs
;; Guix package instead.
(delete-file "clang-rename.el")
(delete-file "clang-format.el")
(for-each
(lambda (file)
(when (file-exists? file)
(delete-file file)))
;; Delete extensions for proprietary text editors.
'("clang-format-bbedit.applescript"
"clang-format-sublime.py"
;; Delete Emacs extensions: see their respective Emacs
;; Guix package instead.
"clang-rename.el" "clang-format.el"))
;; Install bash completion.
(mkdir-p compl-dir)
(rename-file "bash-autocomplete.sh"
(string-append compl-dir "/clang"))))
(when (file-exists? "bash-autocomplete.sh")
(mkdir-p compl-dir)
(rename-file "bash-autocomplete.sh"
(string-append compl-dir "/clang")))))
#t)))))
;; Clang supports the same environment variables as GCC.