gnu: gcc-2.95: Express search paths via (guix search-paths) variables.

* gnu/packages/gcc.scm (gcc-2.95)
[native-search-paths]: Express search paths via (guix search-paths) variables.
This commit is contained in:
Maxim Cournoyer 2023-10-05 21:26:10 -04:00 committed by Ludovic Courtès
parent fed026d1de
commit a9cb2e5714
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -934,12 +934,8 @@ It also includes runtime support libraries for these languages.")
"MAKEINFOFLAGS = --force\n"))))))))
(native-search-paths
;; This package supports nothing but the C language.
(list (search-path-specification
(variable "C_INCLUDE_PATH")
(files '("include")))
(search-path-specification
(variable "LIBRARY_PATH")
(files '("lib")))))))
(list $C_INCLUDE_PATH
$LIBRARY_PATH))))
(define-public (make-libstdc++ gcc)