summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornomike <nomike@nomike.com>2025-07-24 00:55:15 +0200
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-07-26 19:11:49 +0200
commit01765b61c41e503b5c8ce598045e23ac0abc1677 (patch)
tree9129146042f511eaaf0554c84ecc03d62a053a47
parent59bcb514183399c917feb90ea8f1317b0162e85b (diff)
build-system/guile: Rename %scheme-file-regexp to default-scheme-file-regexp and export.
Follow-up to commit 0559a4b5472f9dc4c88240c61e7ad49a95855d6f. * guix/build-system/guile.scm (%scheme-file-regexp): Rename to... (default-scheme-file-regexp): ...this. Export. Change-Id: Ia4cfe59b4d0e9fda9555268f5c22e153123fc2c6 Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r--guix/build-system/guile.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm
index 83386fa156..16e37eefd1 100644
--- a/guix/build-system/guile.scm
+++ b/guix/build-system/guile.scm
@@ -27,9 +27,10 @@
#:use-module (guix build-system gnu)
#:use-module (srfi srfi-26)
#:export (%guile-build-system-modules
- guile-build-system))
+ guile-build-system
+ default-scheme-file-regexp))
-(define %scheme-file-regexp
+(define default-scheme-file-regexp
;; Regexp to match Scheme files.
"\\.(scm|sls)$")
@@ -88,7 +89,7 @@
(system (%current-system))
(source-directory ".")
(not-compiled-file-regexp #f)
- (scheme-file-regexp %scheme-file-regexp)
+ (scheme-file-regexp default-scheme-file-regexp)
(documentation-file-regexp %documentation-file-regexp)
;; FIXME: Turn on parallel building of Guile modules by
;; default after the non-determinism issues in the Guile byte
@@ -141,7 +142,7 @@
(phases '%standard-phases)
(source-directory ".")
- (scheme-file-regexp %scheme-file-regexp)
+ (scheme-file-regexp default-scheme-file-regexp)
(documentation-file-regexp %documentation-file-regexp)
not-compiled-file-regexp
;; FIXME: Turn on parallel building of Guile