From a9cb2e5714b84e205464a8ce2b13b95ffce8d5b3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 5 Oct 2023 21:26:10 -0400 Subject: [PATCH] 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. --- gnu/packages/gcc.scm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 30393c09bc960c547f96b347c7e8478c6f1f5754..d514e0138d3a3a964a839b9b94b4cdd490de9617 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -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)