aboutsummaryrefslogtreecommitdiff
path: root/guix/search-paths.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-09-07 15:55:20 +0200
committerLudovic Courtès <ludo@gnu.org>2022-09-08 16:22:20 +0200
commite7b8e836709528bde663bff454d97cc3e1ec3994 (patch)
tree381523407b71885bf40501ba74600f461e3807e2 /guix/search-paths.scm
parent38e8373830368be66a927cca2cabe52dfd57dbee (diff)
downloadguix-e7b8e836709528bde663bff454d97cc3e1ec3994.tar
guix-e7b8e836709528bde663bff454d97cc3e1ec3994.tar.gz
search-paths: Remove redundant uses of 'define-public'.
* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH, $SSL_CERT_DIR, $SSL_CERT_FILE): Use 'define', not 'define-public'.
Diffstat (limited to 'guix/search-paths.scm')
-rw-r--r--guix/search-paths.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/search-paths.scm b/guix/search-paths.scm
index 5a0cddac8f..9177a791e3 100644
--- a/guix/search-paths.scm
+++ b/guix/search-paths.scm
@@ -74,7 +74,7 @@
(variable "PATH")
(files '("bin" "sbin"))))
-(define-public $GUIX_EXTENSIONS_PATH
+(define $GUIX_EXTENSIONS_PATH
;; 'GUIX_EXTENSIONS_PATH' is used by Guix to locate extension commands.
;; Like 'PATH', it's not attached to any package, so that users don't have
;; to install the 'guix' package (which is not supposed to be installed,
@@ -94,13 +94,13 @@
;; Additionally, the 'native-search-paths' field is not thunked,
;; so doing (package-native-search-paths openssl)
;; could cause import cycle issues.
-(define-public $SSL_CERT_DIR
+(define $SSL_CERT_DIR
(search-path-specification
(variable "SSL_CERT_DIR")
(separator #f) ;single entry
(files '("etc/ssl/certs"))))
-(define-public $SSL_CERT_FILE
+(define $SSL_CERT_FILE
(search-path-specification
(variable "SSL_CERT_FILE")
(file-type 'regular)