Skip to content

Commit 0f408bb

Browse files
committed
Adding workaround for core library change
1 parent efee0cc commit 0f408bb

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

dist.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ rem stub
4141
:stub
4242
echo Generating library from stub
4343
cd src
44-
%SASH% -L../lib -L../sitelib genstub %1
44+
%SASH% -L../sitelib genstub %1
4545
cd ..
4646
goto:eof
4747

dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ stub()
3434
{
3535
echo Generating library from stub
3636
cd src
37-
$SASH -L../lib -L../sitelib ./genstub $1
37+
$SASH -L../sitelib ./genstub $1
3838
cd ../
3939
}
4040

src/genstub

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
;; -*- Scheme -*-
22
#!read-macro=sagittarius/regex
3+
;; workaround
4+
;; TODO remove after 0.9.15
5+
(library (srfi :39 parameters)
6+
(export make-parameter parameterize)
7+
(import (sagittarius parameters)))
8+
39
(import (rnrs)
410
(clos user)
511
(sagittarius control)

0 commit comments

Comments
 (0)