gnu: custom-gcc: Set upstream name.
* gnu/packages/gcc.scm (custom-gcc)[properties]: Add upstream name. Change-Id: I30326dc7952b11451a86f7f026aa1a97364a89e4
This commit is contained in:
parent
84fbfa82af
commit
4dfbc53668
1 changed files with 3 additions and 2 deletions
|
@ -1058,7 +1058,6 @@ as the 'native-search-paths' field."
|
||||||
(package-outputs gcc)
|
(package-outputs gcc)
|
||||||
(delete "lib" (package-outputs gcc))))
|
(delete "lib" (package-outputs gcc))))
|
||||||
(native-search-paths search-paths)
|
(native-search-paths search-paths)
|
||||||
(properties (alist-delete 'hidden? (package-properties gcc)))
|
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments gcc)
|
(substitute-keyword-arguments (package-arguments gcc)
|
||||||
((#:modules modules %gnu-build-system-modules)
|
((#:modules modules %gnu-build-system-modules)
|
||||||
|
@ -1078,7 +1077,9 @@ as the 'native-search-paths' field."
|
||||||
(for-each
|
(for-each
|
||||||
delete-file
|
delete-file
|
||||||
(find-files (string-append (assoc-ref outputs "out") "/bin")
|
(find-files (string-append (assoc-ref outputs "out") "/bin")
|
||||||
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|lto)(-.*)?$"))))))))))
|
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|lto)(-.*)?$"))))))))
|
||||||
|
(properties `((upstream-name . "gcc")
|
||||||
|
,@(alist-delete 'hidden? (package-properties gcc))))))
|
||||||
|
|
||||||
(define %generic-search-paths
|
(define %generic-search-paths
|
||||||
;; This is the language-neutral search path for GCC. Entries in $CPATH are
|
;; This is the language-neutral search path for GCC. Entries in $CPATH are
|
||||||
|
|
Reference in a new issue