aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-09-21 13:16:51 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-09-21 13:16:51 +0300
commit20b3e2126d704153c9524a2584981ceabc419b0a (patch)
treeeb0f78d9e1464d8589f31577da37841e0f76b719
parentaceb6ae2a22b00e4e8438a538a1cd6784fbe24d0 (diff)
downloadgamma-20b3e2126d704153c9524a2584981ceabc419b0a.tar.gz
gamma-20b3e2126d704153c9524a2584981ceabc419b0a.tar.bz2
Minor fixesHEADmaster
-rw-r--r--README-hacking2
-rw-r--r--gamma/Makefile.am4
-rwxr-xr-xscripts/bootstrap8
3 files changed, 8 insertions, 6 deletions
diff --git a/README-hacking b/README-hacking
index c208f79..c5365b1 100644
--- a/README-hacking
+++ b/README-hacking
@@ -14,3 +14,3 @@ latest stable version.
-Of course, you will also need Guile version 1.8 or later:
+Of course, you will also need Guile version 2.2 or later:
diff --git a/gamma/Makefile.am b/gamma/Makefile.am
index de3a868..e4ddfc1 100644
--- a/gamma/Makefile.am
+++ b/gamma/Makefile.am
@@ -34,3 +34,3 @@ GAMMA_BUILT_DATA_FILES += loader.scm
sitedir=$(GUILE_SITE)/$(PACKAGE)
-site_DATA=$(GAMMA_DATA_FILES) documentation.scm
+site_DATA=$(GAMMA_DATA_FILES) $(GAMMA_BUILT_DATA_FILES) documentation.scm
@@ -46,3 +46,3 @@ DISTCLEANFILES=$(site_DATA)
SUFFIXES=
-CLEANFILES=
+CLEANFILES=$(GAMMA_BUILT_DATA_FILES)
BUILT_SOURCES=
diff --git a/scripts/bootstrap b/scripts/bootstrap
index 9a38489..f1a84e3 100755
--- a/scripts/bootstrap
+++ b/scripts/bootstrap
@@ -439,3 +439,4 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cons \"$0\" (cdr (command-line))))"
(lambda (scm-list)
- (let ((built-data '()))
+ (let ((built-data '())
+ (scm-data '()))
(format #t "EXTRA_DIST +=")
@@ -447,3 +448,4 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cons \"$0\" (cdr (command-line))))"
"m")
- built-data)))
+ built-data))
+ (set! scm-data (cons file scm-data)))
(display " ")
@@ -452,3 +454,3 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cons \"$0\" (cdr (command-line))))"
(newline)
- (format #t "GAMMA_DATA_FILES += ~a~%" (string-join scm-list " "))
+ (format #t "GAMMA_DATA_FILES += ~a~%" (string-join scm-data " "))

Return to:

Send suggestions and report system problems to the System administrator.